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.
15 lines
232 B
15 lines
232 B
// test case for github issue #29
|
|
// transitions added for deadlock removal should not get rewards
|
|
|
|
mdp
|
|
|
|
module M1
|
|
s: [0..1] init 0;
|
|
|
|
// deadlock for state 1
|
|
[] s=0 -> 1:(s'=1);
|
|
endmodule
|
|
|
|
rewards "r"
|
|
[] true: 2;
|
|
endrewards
|