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.

85 lines
3.5 KiB

  1. mdp
  2. const int initY = 40;
  3. const int initX = 80;
  4. //const int maxY = 580;
  5. const int maxY = 220;
  6. const int minX = 10;
  7. const int maxX = 144;
  8. formula Gate_1 = (((42<x & x<50) | (74<x & x<82)) & 164<y & y<172);
  9. formula Gate_2 = (((72<x & x<80) | (104<x & x<112)) & 256<y & y<264);
  10. formula Gate_3 = (((80<x & x<88) | (112<x & x<120)) & 349<y & y<357);
  11. formula Gate_4 = (((54<x & x<62) | (88<x & x<96)) & 442<y & y<450);
  12. formula Gate_5 = (((80<x & x<88) | (112<x & x<120)) & 530<y & y<538);
  13. formula Tree_1 = ((x>=124 & x<=142) & (y>=190 & y<=200));
  14. formula Tree_2 = ((x>=32 & x<=49) & (y>=284 & y<=295));
  15. formula Tree_3 = ((x>=30 & x<=49) & (y>=317 & y<=327));
  16. formula Tree_4 = ((x>=12 & x<=30) & (y>=408 & y<=418));
  17. formula Tree_5 = ((x>=129 & x<=146) & (y>=468 & y<=480));
  18. formula Tree_6 = ((x>=140 & x<=152) & (y>=496 & y<=510));
  19. formula Hit_Tree = Tree_1 | Tree_2 | Tree_3 | Tree_4 | Tree_5 | Tree_6;
  20. formula Hit_Gate = Gate_1 | Gate_2 | Gate_3 | Gate_4 | Gate_5;
  21. global move : [0..3];
  22. module skier
  23. ski_position : [1..8] ;
  24. done : bool ;
  25. [left] !Safe & !Unsafe & !done & move=0 & ski_position>1 -> (ski_position'=ski_position-1) & (move'=1) & (done'=(Hit_Tree|Hit_Gate));
  26. [right] !Safe & !Unsafe & !done & move=0 & ski_position<8 -> (ski_position'=ski_position+1) & (move'=1) & (done'=(Hit_Tree|Hit_Gate));
  27. [noop] !Safe & !Unsafe & !done & move=0 -> (move'=1) & (done'=(Hit_Tree|Hit_Gate));
  28. [done] Safe | Unsafe | done -> true;
  29. endmodule
  30. module updateY
  31. y : [initY..maxY] ;
  32. velocity: [0..16];
  33. standstill : [0..8] ;
  34. [update_y] move=1 & standstill>=5 -> (y'=y) & (move'=2);
  35. [update_y] move=1 & standstill<5 -> (y'=min(maxY,y+velocity)) & (move'=2);
  36. [update_y] move=2 & (ski_position=1 | ski_position = 8) & standstill>=5 -> (standstill'=min(8,standstill+1)) & (move'=3);
  37. [update_y] move=2 & (ski_position=1 | ski_position = 8) & standstill<5 -> (velocity'=max(0,velocity-4)) &(move'=3);
  38. [update_y] move=2 & (ski_position=2 | ski_position = 7) -> (velocity'=max(0 ,velocity-2)) & (standstill'=0) & (move'=3);
  39. [update_y] move=2 & (ski_position=3 | ski_position = 6) -> (velocity'=min(8,velocity+2)) & (standstill'=0) & (move'=3);
  40. [update_y] move=2 & (ski_position=4 | ski_position = 5) -> (velocity'=min(8,velocity+4)) & (standstill'=0) & (move'=3);
  41. endmodule
  42. module updateX
  43. x : [minX..maxX] ;
  44. [update_x] move=3 & standstill>=8 -> (move'=0);
  45. [update_x] move=3 & standstill<8 & (ski_position=4 | ski_position=5) -> (move'=0);
  46. [update_x] move=3 & standstill<8 & (ski_position=3) -> 0.4: (x'=max(minX,x-0)) & (move'=0) + 0.6: (x'=max(minX,x-1)) & (move'=0);
  47. [update_x] move=3 & standstill<8 & (ski_position=6) -> 0.4: (x'=min(maxX,x+0)) & (move'=0) + 0.6: (x'=min(maxX,x+1)) & (move'=0);
  48. [update_x] move=3 & standstill<8 & (ski_position=2) -> 0.3: (x'=max(minX,x-0)) & (move'=0) + 0.7: (x'=max(minX,x-1)) & (move'=0);
  49. [update_x] move=3 & standstill<8 & (ski_position=7) -> 0.3: (x'=min(maxX,x+0)) & (move'=0) + 0.7: (x'=min(maxX,x+1)) & (move'=0);
  50. [update_x] move=3 & standstill<8 & (ski_position=1) -> 0.2: (x'=max(minX,x-0)) & (move'=0) + 0.8: (x'=max(minX,x-1)) & (move'=0);
  51. [update_x] move=3 & standstill<8 & (ski_position=8) -> 0.2: (x'=min(maxX,x+0)) & (move'=0) + 0.8: (x'=min(maxX,x+1)) & (move'=0);
  52. endmodule
  53. rewards
  54. [left] !done & (Hit_Tree) : -100;
  55. [right] !done & (Hit_Tree) : -100;
  56. [noop] !done & (Hit_Tree) : -100;
  57. [left] !done & (Hit_Gate) : -100;
  58. [right] !done & (Hit_Gate) : -100;
  59. [noop] !done & (Hit_Gate) : -100;
  60. [done] Unsafe : -100;
  61. endrewards