Skip to content

Commit 7ea2cc4

Browse files
committed
Add Alias in _shiviz spec with which a trace can be visualized with ShiViz.
1 parent 8726d53 commit 7ea2cc4

File tree

2 files changed

+98
-0
lines changed

2 files changed

+98
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
CONSTANTS
2+
Node = {n1,n2,n3,n4,n5,n6,n7}
3+
Init <- MCInit \* Fewer initial states to speed-up startup.
4+
5+
SPECIFICATION
6+
Spec
7+
8+
INVARIANT
9+
Inv
10+
11+
\* The simulator/generator may generate a prefix of a behavior whose length is
12+
\* less than what we wish to see.
13+
CHECK_DEADLOCK
14+
FALSE
15+
16+
ALIAS
17+
Alias
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
2+
3+
$ java -Dtlc2.value.Values.width=99999 -jar tla2tools.jar \
4+
-noTE -deadlock -generate -depth 99999 \
5+
EWD998ChanID_shiviz > ewd998-$(date +%s).txt
6+
7+
8+
* -D...=99999 sets the line width to 99999 chars to prevent line breaks in TLA+
9+
values when printed by TLC. Otherwise, add more sophisticated regex matching
10+
* "noTE" prevents TLC from generating a trace evaluation spec
11+
* "generate" to not exhaustively check the spec but quickly generate some trace
12+
* "depth" has to be greater than the limit in Inv below. By default, the
13+
generator creates traces of length 100
14+
15+
16+
The regex below (without backticks) has to appear on the first line of the input
17+
file for ShiViz. In other words, prepend it to the file ewd-$(date +%s).txt
18+
generated by TLC.
19+
20+
```
21+
^State [0-9]+: <(?<event>\w*) .*>\n\/\\ Host = (?<host>.*)\n\/\\ Clock = "(?<clock>.*)"\n\/\\ active = (?<active>.*)\n\/\\ color = (?<color>.*)\n\/\\ counter = (?<counter>.*)
22+
```
23+
24+
------------------------ MODULE EWD998ChanID_shiviz -------------------------
25+
EXTENDS EWD998ChanID, TLC, TLCExt, Json
26+
27+
\* Init except that active and color are restricted to TRUE and "white" to
28+
\* not waste time generating initial states nobody needs.
29+
MCInit ==
30+
(* Rule 0 *)
31+
/\ counter = [n \in Node |-> 0] \* c properly initialized
32+
/\ inbox = [n \in Node |-> IF n = Initiator
33+
THEN << [type |-> "tok", q |-> 0, color |-> "black" ] >>
34+
ELSE <<>>] \* with empty channels.
35+
(* EWD840 *)
36+
\* Reduce the number of initial states.
37+
/\ active \in [Node -> {TRUE}]
38+
/\ color \in [Node -> {"white"}]
39+
(* Each node maintains a (local) vector clock *)
40+
(* https://en.wikipedia.org/wiki/Vector_clock *)
41+
/\ clock = [n \in Node |-> [m \in Node |-> 0] ]
42+
43+
Inv ==
44+
\* TODO Choose some upper length or a invariant that produces a more
45+
\* TODO interesting behavior. If you increase the length, don't forget
46+
\* TODO to also update TLC's depth parameter.
47+
TLCGet("level") < 666
48+
\* A trace ending with terminationDetected = TRUE that is longer than 22
49+
\* steps.
50+
\*EWD998Chan!EWD998!terminationDetected => TLCGet("level") < 23
51+
52+
\* Temporal logics got rid of explicit state indices. However, when we transform
53+
\* counter-examples, the annoyances of handling indices re-surface. Especially,
54+
\* we are dealing with *finite* prefixes of behaviors.
55+
56+
\* The n \in Node whose "variables" changed in the current step compared to
57+
\* the *predecessor* state. The parameter s represents the current state,
58+
\* the parameter t the predecessor state.
59+
\* Determining whether or not a node has changed is usually easiest by
60+
\* introducing a prophecy variable into the spec (see thread variable in
61+
\* https://git.io/JZ0Wb).
62+
host ==
63+
LET None == "--" \* This should be a model value: CHOOSE n : n \notin Node
64+
lvl == TLCGet("level")
65+
trc == Trace
66+
IN IF lvl = 1 THEN None
67+
ELSE CHOOSE n \in Node:
68+
trc[lvl].clock[n] # trc[lvl-1].clock[n]
69+
70+
Alias ==
71+
[
72+
Host |-> host
73+
,Clock |-> ToJsonObject(clock[host])
74+
75+
,active |-> active
76+
,color |-> color
77+
,counter |-> counter
78+
,inbox |-> inbox
79+
]
80+
81+
=============================================================================

0 commit comments

Comments
 (0)