The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
mdp
module one x : [0 .. 2] init 0;
[a] x=0 -> (x'=1); [] x>=0 -> (x'=2); [done] x>=1 -> true; endmodule
module two y : [0 .. 2] init 0;
[b] y=0 -> (y'=1); [] y>=0 -> (y'=2); [done] y>=1 -> true; endmodule
module three z : [0 .. 2] init 0;
[a] z=0 -> (z'=1); [] x=0&y=0&z=1 -> (z'=2); [loop] z>=1 -> true; endmodule
system ((one || two {b <- a})) {done <- loop} || three endsystem
|