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.
8 lines
324 B
8 lines
324 B
label "one_trying" = p1=1|p2=1|p3=1|p4=1|p5=1;
|
|
label "one_critical" = p1=2|p2=2|p3=2|p4=2|p5=2;
|
|
|
|
// Mutual exclusion
|
|
(p1=2?1:0)+(p2=2?1:0)+(p3=2?1:0)+(p4=2?1:0)+(p5=2?1:0) <= 1
|
|
|
|
// Liveness: If a process is trying, then eventually a process enters the critical section
|
|
"one_trying" => P>=1 [ true U "one_critical" ]
|