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.
18 lines
294 B
18 lines
294 B
// Bug fixed in trunk rev 3691
|
|
// Explicit engine fails for adv gen on Pmin=? [ F s=3 ]
|
|
|
|
mdp
|
|
|
|
module M1
|
|
|
|
s : [0..3];
|
|
|
|
[a] s=0 -> 0.5:(s'=1) + 0.5:(s'=2);
|
|
[b] s=0 -> 1:(s'=2); // this is optimal in s=0
|
|
[c] s=1 -> (s'=3);
|
|
|
|
[d] s>1 -> true;
|
|
|
|
endmodule
|
|
|
|
// Pmin=? [ F s=3 ]
|