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
279 B
16 lines
279 B
// Bug in Gauss-Seidel solution of MDP expected reward to a target for models with self-loops
|
|
// (spotted by Joachim Klein)
|
|
// Fixed in svn rev 11841
|
|
|
|
mdp
|
|
|
|
module M1
|
|
s: [0..1] init 0;
|
|
|
|
[] s=0 -> 1/2:(s'=0) + 1/2:(s'=1);
|
|
[] s=1 -> true;
|
|
endmodule
|
|
|
|
rewards
|
|
s=0 : 1;
|
|
endrewards
|