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.
 
 
 
 
 
 

16 lines
228 B

// Bug fixed in trunk rev 3629
// Explicit engine fails for adv gen on Pmin=? [ F s=1 ]
mdp
module M1
s : [0..2];
[a] s=0 -> 0.5:(s'=1) + 0.5:(s'=2);
[b] s=0 -> 1:(s'=2); // this is optimal
[c] s>0 -> true;
endmodule