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.
 
 
 
 
 
 

14 lines
207 B

// minimal model
// showing bug inadvertently fixed in svn rev 10846
// [from Joachim/Linda]
mdp
module a
s: [0..2] init 0;
[b] (s = 0) -> 0.4: (s' = 1) + 0.6: (s' = 2);
[c] (s > 0) -> true;
endmodule