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.
4 lines
244 B
4 lines
244 B
label "hungry" = ((p1>0) & (p1<8)) | ((p2>0) & (p2<8)) | ((p3>0) & (p3<8));
|
|
label "eat" = (p1=8..9) | (p2=8..9) | (p3=8..9);
|
|
// liveness (if a philosopher is hungry then eventually some philosopher eats)
|
|
"hungry" => P>=1 [ true U "eat"]
|