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.
23 lines
330 B
23 lines
330 B
// Silly bug found by Marcus Daum
|
|
// Fixed in svn rev 6795
|
|
|
|
dtmc
|
|
|
|
module M
|
|
|
|
x : [0..3];
|
|
|
|
[] x=0 -> (x'=1);
|
|
[] x=1 -> 0.01 : (x'=1) + 0.01 : (x'=2) + 0.98 : (x'=3);
|
|
[] x=2 -> (x'=0);
|
|
[] x=3 -> (x'=3);
|
|
|
|
endmodule
|
|
|
|
label "try" = x=1;
|
|
label "fail" = x=2;
|
|
label "succ" = x=3;
|
|
|
|
rewards
|
|
x=1 : 1;
|
|
endrewards
|