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.

24 lines
301 B

  1. mdp
  2. module simple
  3. // local state
  4. s : [0..2] init 0;
  5. [A] s=0 -> 0.2 : (s'=1) + 0.8 : (s'=0);
  6. [B] s=0 -> 1 : (s'=2);
  7. [C] s=0 -> 1 : (s'=0);
  8. [] s>0 -> 1 : (s'=s);
  9. endmodule
  10. rewards "actA"
  11. [A] true : 1;
  12. endrewards
  13. rewards "actB"
  14. [B] true : 2;
  15. endrewards
  16. label "a" = s=1;
  17. label "b" = s=2;