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.
10 lines
212 B
10 lines
212 B
// Bug in handling of implication in explicit engine (from Philipp Chrszon) (fixed in rev 9374)
|
|
|
|
dtmc
|
|
|
|
module test
|
|
s : bool init false;
|
|
|
|
[] s => false -> (s' = true);
|
|
[] s -> true;
|
|
endmodule
|