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.

88 lines
3.1 KiB

  1. // model of randomised consensus
  2. mdp
  3. const int N = 2; // num processes
  4. const int MAX = 3; // num rounds (R)
  5. const int K = 2; // Parameter for coins
  6. // need to turn these into local copies later so the reading phase is complete?
  7. formula leaders_agree1 = (p1=1 | r1<max(r1,r2)) & (p2=1 | r2<max(r1,r2));
  8. formula leaders_agree2 = (p1=2 | r1<max(r1,r2)) & (p2=2 | r2<max(r1,r2));
  9. formula decide1 = leaders_agree1 & (p1=1 | r1<max(r1,r2)-1) & (p2=1 | r2<max(r1,r2)-1);
  10. formula decide2 = leaders_agree2 & (p1=2 | r1<max(r1,r2)-1) & (p2=2 | r2<max(r1,r2)-1);
  11. module process1
  12. s1 : [0..5]; // local state
  13. // 0 initialise/read registers
  14. // 1 finish reading registers (make a decision)
  15. // 1 warn of change
  16. // 2 enter shared coin protocol
  17. // 4 finished
  18. // 5 error (reached max round and cannot decide)
  19. r1 : [0..MAX]; // round of the process
  20. p1 : [0..2]; // preference (0 corresponds to null)
  21. // nondeterministic choice as to initial preference
  22. [] s1=0 & r1=0 -> (p1'=1) & (r1'=1);
  23. [] s1=0 & r1=0 -> (p1'=2) & (r1'=1);
  24. // read registers (currently does nothing because read vs from other processes
  25. [] s1=0 & r1>0 & r1<=MAX -> (s1'=1);
  26. // maxke a decision
  27. [] s1=1 & decide1 -> (s1'=4) & (p1'=1);
  28. [] s1=1 & decide2 -> (s1'=4) & (p1'=2);
  29. [] s1=1 & r1<MAX & leaders_agree1 & !decide1 -> (s1'=0) & (p1'=1) & (r1'=r1+1);
  30. [] s1=1 & r1<MAX & leaders_agree2 & !decide2 -> (s1'=0) & (p1'=2) & (r1'=r1+1);
  31. [] s1=1 & r1<MAX & !(leaders_agree1 | leaders_agree2) -> (s1'=2) & (p1'=0);
  32. [] s1=1 & r1=MAX & !(decide1 | decide2) -> (s1'=5); // run out of rounds so error
  33. // enter the coin procotol for the current round
  34. [coin1_s1_start] s1=2 & r1=1 -> (s1'=3);
  35. [coin2_s1_start] s1=2 & r1=2 -> (s1'=3);
  36. // get response from the coin protocol
  37. [coin1_s1_p1] s1=3 & r1=1 -> (s1'=0) & (p1'=1) & (r1'=r1+1);
  38. [coin1_s1_p2] s1=3 & r1=1 -> (s1'=0) & (p1'=2) & (r1'=r1+1);
  39. [coin2_s1_p1] s1=3 & r1=2 -> (s1'=0) & (p1'=1) & (r1'=r1+1);
  40. [coin2_s1_p2] s1=3 & r1=2 -> (s1'=0) & (p1'=2) & (r1'=r1+1);
  41. // done so loop
  42. [done] s1>=4 -> true;
  43. endmodule
  44. module process2 = process1[ s1=s2,
  45. p1=p2,p2=p1,
  46. r1=r2,r2=r1,
  47. coin1_s1_start=coin1_s2_start,coin2_s1_start=coin2_s2_start,
  48. coin1_s1_p1=coin1_s2_p1,coin2_s1_p1=coin2_s2_p1,
  49. coin1_s1_p2=coin1_s2_p2,coin2_s1_p2=coin2_s2_p2 ]
  50. endmodule
  51. module coin1_error
  52. c1 : [0..1]; // 1 is the error state
  53. v1 : [0..2]; // value of the coin returned the first time
  54. // first returned value (any processes)
  55. [coin1_s1_p1] v1=0 -> (v1'=1);
  56. [coin1_s2_p1] v1=0 -> (v1'=1);
  57. [coin1_s1_p2] v1=0 -> (v1'=2);
  58. [coin1_s2_p2] v1=0 -> (v1'=2);
  59. // later values returned
  60. [coin1_s1_p1] v1=1 -> true; // good behaviour
  61. [coin1_s2_p1] v1=1 -> true; // good behaviour
  62. [coin1_s1_p2] v1=2 -> true; // good behaviour
  63. [coin1_s2_p2] v1=2 -> true; // good behaviour
  64. [coin1_s1_p1] v1=2 -> (c1'=1); // error
  65. [coin1_s2_p1] v1=2 -> (c1'=1); // error
  66. [coin1_s1_p2] v1=1 -> (c1'=1); // error
  67. [coin1_s2_p2] v1=1 -> (c1'=1); // error
  68. endmodule
  69. // coins 2 and 3 are of no use as there are not enough rounds afterwards to decide
  70. // Labels
  71. label "one_proc_err" = (s1=5 | s2=5);
  72. label "one_coin_ok" = (c1=0);