libtlafmt 0.4.1

A formatter library for TLA+ specs, core of tlafmt
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
---
source: libtlafmt/tests/format.rs
expression: output
input_file: libtlafmt/tests/corpus/Bakery.tla
---
-------------------------------- MODULE Bakery ---------------------------------
(***************************************************************************)
(* The bakery algorithm originally appeared in:                            *)
(*                                                                         *)
(*   Leslie Lamport                                                        *)
(*   A New Solution of Dijkstra's Concurrent Programming Problem           *)
(*   Communications of the ACM 17, 8   (August 1974), 453-455              *)
(*                                                                         *)
(* The code for the algorithm given in that paper is :                     *)
(*                                                                      `. *)
(*   begin integer j;                                                      *)
(*   L1: choosing [i] := 1 ;                                               *)
(*       number[i] := 1 + maximum (number[1],..., number[N]);              *)
(*       choosing[i] := 0;                                                 *)
(*       for j = 1 step l until N do                                       *)
(*          begin                                                          *)
(*            L2: if choosing[j] /= 0 then goto L2;                        *)
(*            L3: if number[j] /= 0 and (number [j], j) < (number[i],i)    *)
(*                  then goto L3;                                          *)
(*          end;                                                           *)
(*       critical section;                                                 *)
(*       number[i] := O;                                                   *)
(*       noncritical section;                                              *)
(*       goto L1 ;                                                         *)
(*   end                                                               .'  *)
(*                                                                         *)
(* This PlusCal version of the Atomic Bakery algorithm is one in which     *)
(* variables whose initial values are not used are initialized to          *)
(* particular type-correct values.  If the variables were left             *)
(* uninitialized, the PlusCal translation would initialize them to a       *)
(* particular unspecified value.  This would complicate the proof because  *)
(* it would make the type-correctness invariant more complicated, but it   *)
(* would be efficient to model check.  We could write a version that is    *)
(* more elegant and easy to prove, but less efficient to model check, by   *)
(* initializing the variables to arbitrarily chosen type-correct values.   *)
(***************************************************************************)
EXTENDS Naturals, TLAPS

(***************************************************************************)
(* We first declare N to be the number of processes, and we assume that N  *)
(* is a natural number.                                                    *)
(***************************************************************************)
CONSTANT N
ASSUME N \in Nat

(***************************************************************************)
(* We define Procs to be the set {1, 2, ...  , N} of processes.            *)
(***************************************************************************)
Procs == 1..N

(***************************************************************************)
(* \prec is defined to be the lexicographical less-than relation on pairs  *)
(* of numbers.                                                             *)
(***************************************************************************)
a \prec b ==
    \/ a[1] < b[1]
    \/ (a[1] = b[1]) /\ (a[2] < b[2])

(***       this is a comment containing the PlusCal code *

--algorithm Bakery 
{ variables num = [i \in Procs |-> 0], flag = [i \in Procs |-> FALSE];
  fair process (p \in Procs)
    variables unchecked = {}, max = 0, nxt = 1 ;
    { ncs:- while (TRUE) 
            { e1:   either { flag[self] := ~ flag[self] ;
                             goto e1 }
                    or     { flag[self] := TRUE;
                             unchecked := Procs \ {self} ;
                             max := 0
                           } ;     
              e2:   while (unchecked # {}) 
                      { with (i \in unchecked) 
                          { unchecked := unchecked \ {i};
                            if (num[i] > max) { max := num[i] }
                          }
                      };
              e3:   either { with (k \in Nat) { num[self] := k } ;
                             goto e3 }
                    or     { with (i \in {j \in Nat : j > max}) 
                               { num[self] := i }
                           } ;
              e4:   either { flag[self] := ~ flag[self] ;
                             goto e4 }
                    or     { flag[self] := FALSE;
                             unchecked := Procs \ {self} 
                           } ;
              w1:   while (unchecked # {}) 
                      {     with (i \in unchecked) { nxt := i };
                            await ~ flag[nxt];
                        w2: await \/ num[nxt] = 0
                                  \/ <<num[self], self>> \prec <<num[nxt], nxt>> ;
                            unchecked := unchecked \ {nxt};
                      } ;
              cs:   skip ;  \* the critical section;
              exit: either { with (k \in Nat) { num[self] := k } ;
                             goto exit }
                    or     { num[self] := 0 } 
            }
    }
}

    this ends the comment containing the PlusCal code
*************)

\* BEGIN TRANSLATION  (this begins the translation of the PlusCal code)
VARIABLES num, flag, pc, unchecked, max, nxt

vars == << num, flag, pc, unchecked, max, nxt >>

ProcSet == (Procs)

Init == (* Global variables *)
    /\ num = [i \in Procs |-> 0]
    /\ flag = [i \in Procs |-> FALSE]
    (* Process p *)
    /\ unchecked = [self \in Procs |-> {}]
    /\ max = [self \in Procs |-> 0]
    /\ nxt = [self \in Procs |-> 1]
    /\ pc = [self \in ProcSet |-> "ncs"]

ncs(self) ==
    /\ pc[self] = "ncs"
    /\ pc' = [pc EXCEPT ![self] = "e1"]
    /\ UNCHANGED << num, flag, unchecked, max, nxt >>

e1(self) ==
    /\ pc[self] = "e1"
    /\
        \/
            /\ flag' = [flag EXCEPT ![self] = ~flag[self]]
            /\ pc' = [pc EXCEPT ![self] = "e1"]
            /\ UNCHANGED << unchecked, max >>
        \/
            /\ flag' = [flag EXCEPT ![self] = TRUE]
            /\ unchecked' = [unchecked EXCEPT ![self] = Procs \ {self}]
            /\ max' = [max EXCEPT ![self] = 0]
            /\ pc' = [pc EXCEPT ![self] = "e2"]
    /\ UNCHANGED << num, nxt >>

e2(self) ==
    /\ pc[self] = "e2"
    /\ IF unchecked[self] /= {}
        THEN
            /\ \E i \in unchecked[self]:
                /\ unchecked' = [unchecked EXCEPT ![self] = unchecked[self] \ {i}]
                /\ IF num[i] > max[self]
                    THEN
                        /\ max' = [max EXCEPT ![self] = num[i]]
                    ELSE
                        /\ TRUE
                        /\ max' = max
            /\ pc' = [pc EXCEPT ![self] = "e2"]
        ELSE
            /\ pc' = [pc EXCEPT ![self] = "e3"]
            /\ UNCHANGED << unchecked, max >>
    /\ UNCHANGED << num, flag, nxt >>

e3(self) ==
    /\ pc[self] = "e3"
    /\
        \/
            /\ \E k \in Nat:
                num' = [num EXCEPT ![self] = k]
            /\ pc' = [pc EXCEPT ![self] = "e3"]
        \/
            /\ \E i \in {j \in Nat: j > max[self]}:
                num' = [num EXCEPT ![self] = i]
            /\ pc' = [pc EXCEPT ![self] = "e4"]
    /\ UNCHANGED << flag, unchecked, max, nxt >>

e4(self) ==
    /\ pc[self] = "e4"
    /\
        \/
            /\ flag' = [flag EXCEPT ![self] = ~flag[self]]
            /\ pc' = [pc EXCEPT ![self] = "e4"]
            /\ UNCHANGED unchecked
        \/
            /\ flag' = [flag EXCEPT ![self] = FALSE]
            /\ unchecked' = [unchecked EXCEPT ![self] = Procs \ {self}]
            /\ pc' = [pc EXCEPT ![self] = "w1"]
    /\ UNCHANGED << num, max, nxt >>

w1(self) ==
    /\ pc[self] = "w1"
    /\ IF unchecked[self] /= {}
        THEN
            /\ \E i \in unchecked[self]:
                nxt' = [nxt EXCEPT ![self] = i]
            /\ ~flag[nxt' [self]]
            /\ pc' = [pc EXCEPT ![self] = "w2"]
        ELSE
            /\ pc' = [pc EXCEPT ![self] = "cs"]
            /\ nxt' = nxt
    /\ UNCHANGED << num, flag, unchecked, max >>

w2(self) ==
    /\ pc[self] = "w2"
    /\
        \/ num[nxt[self]] = 0
        \/ << num[self], self >> \prec << num[nxt[self]], nxt[self] >>
    /\ unchecked' = [unchecked EXCEPT ![self] = unchecked[self] \ {nxt[self]}]
    /\ pc' = [pc EXCEPT ![self] = "w1"]
    /\ UNCHANGED << num, flag, max, nxt >>

cs(self) ==
    /\ pc[self] = "cs"
    /\ TRUE
    /\ pc' = [pc EXCEPT ![self] = "exit"]
    /\ UNCHANGED << num, flag, unchecked, max, nxt >>

exit(self) ==
    /\ pc[self] = "exit"
    /\
        \/
            /\ \E k \in Nat:
                num' = [num EXCEPT ![self] = k]
            /\ pc' = [pc EXCEPT ![self] = "exit"]
        \/
            /\ num' = [num EXCEPT ![self] = 0]
            /\ pc' = [pc EXCEPT ![self] = "ncs"]
    /\ UNCHANGED << flag, unchecked, max, nxt >>

p(self) == ncs(self) \/ e1(self) \/ e2(self) \/ e3(self) \/ e4(self)
\/ w1(self) \/ w2(self) \/ cs(self) \/ exit(self)

Next == (\E self \in Procs: p(self))

Spec ==
    /\ Init /\ [][Next]_vars
    /\ \A self \in Procs: WF_vars((pc[self] /= "ncs") /\ p(self))

\* END TRANSLATION   (this ends the translation of the PlusCal code)

(***************************************************************************)
(* MutualExclusion asserts that no two distinct processes are in their     *)
(* critical sections.                                                      *)
(***************************************************************************)
MutualExclusion == \A i, j \in Procs: (i /= j) => ~
    /\ pc[i] = "cs"
    /\ pc[j] = "cs"
--------------------------------------------------------------------------------
(***************************************************************************)
(* The Inductive Invariant                                                 *)
(*                                                                         *)
(* TypeOK is the type-correctness invariant.                               *)
(***************************************************************************)
TypeOK ==
    /\ num \in [Procs -> Nat]
    /\ flag \in [Procs -> BOOLEAN ]
    /\ unchecked \in [Procs -> SUBSET Procs]
    /\ max \in [Procs -> Nat]
    /\ nxt \in [Procs -> Procs]
    /\ pc \in [Procs -> {"ncs", "e1", "e2", "e3",
        "e4", "w1", "w2", "cs", "exit"}]

(***************************************************************************)
(* Before(i, j) is a condition that implies that num[i] > 0 and, if j is   *)
(* trying to enter its critical section and i does not change num[i], then *)
(* j either has or will choose a value of num[j] for which                 *)
(*                                                                         *)
(*     <<num[i],i>> \prec <<num[j],j>>                                     *)
(*                                                                         *)
(* is true.                                                                *)
(***************************************************************************)
Before(i, j) ==
    /\ num[i] > 0
    /\
        \/ pc[j] \in {"ncs", "e1", "exit"}
        \/
            /\ pc[j] = "e2"
            /\
                \/ i \in unchecked[j]
                \/ max[j] >= num[i]
        \/
                /\ pc[j] = "e3"
                /\ max[j] >= num[i]
        \/
                /\ pc[j] \in {"e4", "w1", "w2"}
                /\ << num[i], i >> \prec << num[j], j >>
                /\ (pc[j] \in {"w1", "w2"}) => (i \in unchecked[j])
                
(***************************************************************************)
(* Inv is the complete inductive invariant.                                *)
(***************************************************************************)
Inv ==
    /\ TypeOK
    /\ \A i \in Procs:
\*             /\ (pc[i] \in {"ncs", "e1", "e2"}) => (num[i] = 0)
    /\ (pc[i] \in {"e4", "w1", "w2", "cs"}) => (num[i] /= 0)
    /\ (pc[i] \in {"e2", "e3"}) => flag[i]
    /\ (pc[i] = "w2") => (nxt[i] /= i)
    /\ pc[i] \in {(*"e2",*) "w1", "w2"} => i \notin unchecked[i]
    /\ (pc[i] \in {"w1", "w2"}) =>
        \A j \in (Procs \ unchecked[i]) \ {i}: Before(i, j)
    /\
            /\ (pc[i] = "w2")
            /\
                \/ (pc[nxt[i]] = "e2") /\ (i \notin unchecked[nxt[i]])
                \/ pc[nxt[i]] = "e3"
        => max[nxt[i]] >= num[i]
    /\ (pc[i] = "cs") => \A j \in Procs \ {i}: Before(i, j)

--------------------------------------------------------------------------------
(***************************************************************************)
(* Proof of Mutual Exclusion                                               *)
(*                                                                         *)
(* This is a standard invariance proof, where <1>2 asserts that any step   *)
(* of the algorithm (including a stuttering step) starting in a state in   *)
(* which Inv is true leaves Inv true.  Step <1>4 follows easily from       *)
(* <1>1-<1>3 by simple temporal reasoning.                                 *)
(***************************************************************************)
THEOREM Spec => []MutualExclusion
<1> USE N \in Nat DEFS Procs, TypeOK, Before, \prec, ProcSet 
<1>1. Init => Inv
  BY DEF Init, Inv
<1>2. Inv /\ [Next]_vars => Inv'
  <2> SUFFICES ASSUME Inv,
                      [Next]_vars
               PROVE  Inv'
    OBVIOUS
  <2>1. ASSUME NEW self \in Procs,
               ncs(self)
        PROVE  Inv'
    BY <2>1 DEF ncs, Inv
  <2>2. ASSUME NEW self \in Procs,
               e1(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "e1"
         /\ UNCHANGED <<num,nxt>>
      BY <2>2 DEF e1
    <3>1. CASE /\ flag' = [flag EXCEPT ![self] = ~ flag[self]]
               /\ pc' = [pc EXCEPT ![self] = "e1"]
               /\ UNCHANGED <<unchecked, max>>
      BY <3>1 DEF Inv
    <3>2. CASE /\ flag' = [flag EXCEPT ![self] = TRUE]
               /\ unchecked' = [unchecked EXCEPT ![self] = Procs \ {self}]
               /\ max' = [max EXCEPT ![self] = 0]
               /\ pc' = [pc EXCEPT ![self] = "e2"]
      BY <3>2 DEF Inv
    <3>. QED  BY <3>1, <3>2, <2>2 DEF e1
  <2>3. ASSUME NEW self \in Procs,
               e2(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "e2"
         /\ UNCHANGED << num, flag, nxt >>
      BY <2>3 DEF e2
    <3>1. ASSUME NEW i \in unchecked[self],
                 unchecked' = [unchecked EXCEPT ![self] = unchecked[self] \ {i}],
                 num[i] > max[self],
                 max' = [max EXCEPT ![self] = num[i]],
                 pc' = [pc EXCEPT ![self] = "e2"]
          PROVE  Inv'
       BY <3>1, Z3T(10) DEF Inv
    <3>2. ASSUME NEW i \in unchecked[self],
                 unchecked' = [unchecked EXCEPT ![self] = unchecked[self] \ {i}],
                 ~(num[i] > max[self]),
                 max' = max,
                 pc' = [pc EXCEPT ![self] = "e2"]
          PROVE  Inv'
       <4>. TypeOK'  BY <3>2 DEF Inv
       <4>1. \A ii \in Procs : (pc'[ii] \in {"e4", "w1", "w2", "cs"}) => (num'[ii] # 0)
         BY <3>2 DEF Inv
       <4>2. \A ii \in Procs : (pc'[ii] \in {"e2", "e3"}) => flag'[ii]
         BY <3>2 DEF Inv
       <4>3. \A ii \in Procs : (pc'[ii] = "w2") => (nxt'[ii] # ii)
         BY <3>2 DEF Inv
       <4>4. \A ii \in Procs : pc'[ii] \in {(*"e2",*) "w1", "w2"} => ii \notin unchecked'[ii]
         BY <3>2 DEF Inv
       <4>5. \A ii \in Procs : (pc'[ii] \in {"w1", "w2"}) =>
                   \A j \in (Procs \ unchecked'[ii]) \ {ii} : Before(ii, j)'
         BY <3>2 DEF Inv
       <4>6. \A ii \in Procs : 
                /\ (pc'[ii] = "w2")
                /\ \/ (pc'[nxt'[ii]] = "e2") /\ (ii \notin unchecked'[nxt'[ii]])
                   \/ pc'[nxt'[ii]] = "e3"
                => max'[nxt'[ii]] >= num'[ii]
         BY <3>2 DEF Inv
       <4>7. \A ii \in Procs : (pc'[ii] = "cs") => \A j \in Procs \ {ii} : Before(ii, j)'
         BY <3>2 DEF Inv
       <4>. QED  BY (*<4>0,*) <4>1, <4>2, <4>3, <4>4, <4>5, <4>6, <4>7 DEF Inv
    <3>3. CASE /\ unchecked[self] = {}
               /\ pc' = [pc EXCEPT ![self] = "e3"]
               /\ UNCHANGED << unchecked, max >>
       BY <3>3 DEF Inv
    <3>. QED  BY <3>1, <3>2, <3>3, <2>3 DEF e2
  <2>4. ASSUME NEW self \in Procs,
               e3(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "e3"
         /\ UNCHANGED << flag, unchecked, max, nxt >>
      BY <2>4 DEF e3
    <3>1. CASE /\ \E k \in Nat:
                       num' = [num EXCEPT ![self] = k]
               /\ pc' = [pc EXCEPT ![self] = "e3"]
      BY <3>1 DEF Inv
    <3>2. CASE /\ \E i \in {j \in Nat : j > max[self]}:
                       num' = [num EXCEPT ![self] = i]
               /\ pc' = [pc EXCEPT ![self] = "e4"]
      BY <3>2, SMTT(60) DEF Inv
    <3>3. QED  BY <3>1, <3>2, <2>4 DEF e3
  <2>5. ASSUME NEW self \in Procs,
               e4(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "e4"
         /\ UNCHANGED << num, max, nxt >>
      BY <2>5 DEF e4
    <3>1. CASE /\ flag' = [flag EXCEPT ![self] = ~ flag[self]]
               /\ pc' = [pc EXCEPT ![self] = "e4"]
               /\ UNCHANGED unchecked
      BY <3>1 DEF Inv
    <3>2. CASE /\ flag' = [flag EXCEPT ![self] = FALSE]
               /\ unchecked' = [unchecked EXCEPT ![self] = Procs \ {self}]
               /\ pc' = [pc EXCEPT ![self] = "w1"]
      BY <3>2, Z3T(30) DEF Inv
    <3>. QED  BY <3>1, <3>2, <2>5 DEF e4
  <2>6. ASSUME NEW self \in Procs,
               w1(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "w1"
         /\ UNCHANGED << num, flag, unchecked, max >>
      BY <2>6 DEF w1
    <3>1. CASE /\ unchecked[self] # {}
               /\ \E i \in unchecked[self]:
                            nxt' = [nxt EXCEPT ![self] = i]
               /\ ~ flag[nxt'[self]]
               /\ pc' = [pc EXCEPT ![self] = "w2"]
      BY <3>1, Z3 DEF Inv
    <3>2. CASE /\ unchecked[self] = {}
               /\ pc' = [pc EXCEPT ![self] = "cs"]
               /\ nxt' = nxt
      BY <3>2, Z3 DEF Inv
    <3>. QED  BY <3>1, <3>2, <2>6 DEF w1
  <2>7. ASSUME NEW self \in Procs,
               w2(self)
        PROVE  Inv'
    BY <2>7, Z3T(30) DEF w2, Inv
  <2>8. ASSUME NEW self \in Procs,
               cs(self)
        PROVE  Inv'
    BY <2>8, Z3 DEF cs, Inv
  <2>9. ASSUME NEW self \in Procs,
               exit(self)
        PROVE  Inv'
    <3>. /\ pc[self] = "exit"
         /\ UNCHANGED << flag, unchecked, max, nxt >>
      BY <2>9 DEF exit
    <3>1. CASE /\ \E k \in Nat:
                         num' = [num EXCEPT ![self] = k]
               /\ pc' = [pc EXCEPT ![self] = "exit"]
      BY <3>1 DEF Inv
    <3>2. CASE /\ num' = [num EXCEPT ![self] = 0]
               /\ pc' = [pc EXCEPT ![self] = "ncs"]
      BY <3>2 DEF Inv
    <3>. QED  BY <3>1, <3>2, <2>9 DEF exit
  <2>10. CASE UNCHANGED vars
    BY <2>10 DEF vars, Inv
  <2>11. QED
    BY <2>1, <2>10, <2>2, <2>3, <2>4, <2>5, <2>6, <2>7, <2>8, <2>9 DEF Next, p
<1>3. Inv => MutualExclusion
  BY SMT DEF MutualExclusion, Inv
<1>4. QED
  BY <1>1, <1>2, <1>3, PTL DEF Spec
--------------------------------------------------------------------------------
Trying(i) == pc[i] = "e1"
InCS(i) == pc[i] = "cs"
DeadlockFree == (\E i \in Procs: Trying(i)) ~> (\E i \in Procs: InCS(i))
StarvationFree == \A i \in Procs: Trying(i) ~> InCS(i)

--------------------------------------------------------------------------------
II == \A i \in Procs:
\*        /\ (pc[i] \in {"ncs", "e1", "e2"}) => (num[i] = 0)             \* not found Test 1 (21993 states)
    /\ (pc[i] \in {"e4", "w1", "w2", "cs"}) => (num[i] /= 0)           \* found Test 1
    /\ (pc[i] \in {"e2", "e3"}) => flag[i]                             \* found Test 1
    /\ (pc[i] = "w2") => (nxt[i] /= i)                                 \* not found Test 1 (12115 states) or with N=2
    /\ pc[i] \in {"e2", "w1", "w2"} => i \notin unchecked[i]           \* found Test 1 
    /\ (pc[i] \in {"w1", "w2"}) =>                                     \* found Test 1
        \A j \in (Procs \ unchecked[i]) \ {i}: Before(i, j)
    /\
            /\ (pc[i] = "w2") \* found Test 1
            /\
                \/ (pc[nxt[i]] = "e2") /\ (i \notin unchecked[nxt[i]])
                \/ pc[nxt[i]] = "e3"
        => max[nxt[i]] >= num[i]
    /\ (pc[i] = "cs") => \A j \in Procs \ {i}: Before(i, j) \* found Test 1

IInit ==
    /\ num \in [Procs -> Nat]
    /\ flag \in [Procs -> BOOLEAN ]
    /\ unchecked \in [Procs -> SUBSET Procs]
    /\ max \in [Procs -> Nat]
    /\ nxt \in [Procs -> Procs]
    /\ pc \in [Procs -> {"ncs", "e1", "e2", "e3",
        "e4", "w1", "w2", "cs", "exit"}]
    /\ II

ISpec == IInit /\ [][Next]_vars

================================================================================
\* Modification History
\* Last modified Mon Mar 06 13:47:10 CET 2023 by merz
\* Last modified Tue Aug 27 12:23:10 PDT 2019 by loki
\* Last modified Sat May 19 16:40:23 CEST 2018 by merz
\* Last modified Thu May 17 07:02:45 PDT 2018 by lamport
\* Created Thu Nov 21 15:54:32 PST 2013 by lamport

Test 1:  5248 distinct initial states  151056 full initial states
IInit == /\ num \in [Procs -> Nat]
         /\ flag \in [Procs -> BOOLEAN]
         /\ unchecked \in [Procs -> SUBSET Procs]
         /\ max \in [Procs ->  {0}] \* Nat]
         /\ nxt \in [Procs ->  {1}]
         /\ pc \in [Procs -> {"ncs", "e1", "e2", "e3",
                               "e4", "w1", "w2", "cs"}] 
         /\ II