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
284 B
18 lines
284 B
// Bug fixed in svn rev 11061
|
|
// Value iteration multi-objective was removing self-loops
|
|
// in situations where it should not be
|
|
|
|
mdp
|
|
|
|
module m
|
|
s : [0..1];
|
|
|
|
[] s=0 -> (s'=0);
|
|
[a] s=0 -> (s'=1);
|
|
[] s=1 -> (s'=1);
|
|
|
|
endmodule
|
|
|
|
rewards "R1"
|
|
[a] s=0 : 2;
|
|
endrewards
|