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.
 
 
 
 
 
 

11 lines
393 B

// Minimum probability that a leader is eventually elected
// RESULT (delay=30): 1.0
"eventually": Pmin=? [ F "done" ];
// Minimum probability that a leader has been elected by time T
// RESULT (delay=30): 0.851563
"deadline_min": Pmin=? [ F<=5000 "done" ];
// Maximum probability that a leader has been elected by time T
// RESULT (delay=30): 0.25
"deadline_max": Pmax=? [ F<=750 "done" ];