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.
 
 
 
 
 
 

20 lines
267 B

// another simple LTL example from Christel's thesis (p.240)
mdp
module M
s : [1..3];
// s
[] (s=1) -> (s'=2);
[] (s=1) -> (s'=3);
// t
[] (s=2) -> (s'=1);
// u
[] (s=3) -> (s'=3);
endmodule
label "a" = s=1 | s=2;
label "b" = s=2;