|
| 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