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.
23 lines
185 B
23 lines
185 B
ctmc
|
|
|
|
module M1
|
|
|
|
x : [0..2];
|
|
|
|
[a] x=0 -> (x'=1);
|
|
[] x>0 -> true;
|
|
|
|
endmodule
|
|
|
|
module M2
|
|
|
|
y : [0..2];
|
|
|
|
[a] y=0 -> (y'=1);
|
|
[] y>0 -> true;
|
|
|
|
endmodule
|
|
|
|
system
|
|
M1 ||| M2
|
|
endsystem
|