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.
17 lines
261 B
17 lines
261 B
// Simple LTS from Lec 9 of Computer-Aided Verification
|
|
|
|
module M
|
|
|
|
s:[0..3];
|
|
|
|
[] s=0 -> (s'=1);
|
|
[] s=0 -> (s'=2);
|
|
[] s=1 -> (s'=1);
|
|
[] s=1 -> (s'=3);
|
|
[] s=2 -> (s'=1);
|
|
[] s=3 -> (s'=3);
|
|
|
|
endmodule
|
|
|
|
label "a" = s=0 | s=1;
|
|
label "b" = s=0 | s=3;
|