libtlafmt 0.4.1

A formatter library for TLA+ specs, core of tlafmt
Documentation
----------------------------- MODULE YoYoAllGraphs ---------------------------
(****************************************************************************)
(* This module describes the Yo-Yo algorithm with pruning. Unlike the basic *)
(* specification of that algorithm in module YoYoPruning, it allows the     *)
(* algorithm to be verified for all undirected, loop-free, and connected    *)
(* graphs over a fixed number of nodes.                                     *)
(*                                                                          *)
(* Authors: Ludovic Yvoz and Stephan Merz, 2024.                            *)
(****************************************************************************)

EXTENDS TLC, Integers, FiniteSets, UndirectedGraphs

CONSTANT N  \* number of nodes

ASSUME N \in Nat \ {0}

Nodes == 1 .. N
(****************************************************************************)
(* Set of all (non-loop) edges over the set of nodes. The algorithm will    *)
(* operate over a subset of edges that forms a connected graph.             *)
(****************************************************************************)
Edges == {{e[1], e[2]} : e \in {e \in Nodes \X Nodes : e[1] # e[2]}}

Min(S) == CHOOSE x \in S : \A y \in S : x <= y

VARIABLES 
  (* the activation status of the node *)
  active,
  (* the phase (down or up) each node is currently executing *)
  phase,
  (* incoming and outgoing neighbors of each node *)
  incoming, outgoing,
  (* mailbox of each node *)
  mailbox

vars == <<active, phase, incoming, outgoing, mailbox>>

(****************************************************************************)
(* Determine the kind of the node: leader, source, sink or internal.        *)
(****************************************************************************)
kind(n) ==
    IF incoming[n] = {} /\ outgoing[n] = {} THEN "leader"
    ELSE IF incoming[n] = {} THEN "source"
    ELSE IF outgoing[n] = {} THEN "sink"
    ELSE "internal"

(****************************************************************************)
(* Messages sent during the algorithm.                                      *)
(****************************************************************************)
Messages == 
  [phase : {"down"}, sndr : Nodes, val : Nodes] \cup  
  [phase : {"up"}, sndr : Nodes, reply : {"yes", "no"}, prune : BOOLEAN]
downMsg(s,v) == [phase |-> "down", sndr |-> s, val |-> v]
upMsg(s,r,p) == [phase |-> "up", sndr |-> s, reply |-> r, prune |-> p]

(****************************************************************************)
(* Type correctness predicate.                                              *)
(****************************************************************************)
TypeOK == 
    /\ active \in [Nodes -> BOOLEAN]
    /\ phase \in [Nodes -> {"down", "up"}]
    /\ incoming \in [Nodes -> SUBSET Nodes]
    /\ outgoing \in [Nodes -> SUBSET Nodes]
    /\ mailbox \in [Nodes -> SUBSET Messages]
    /\ \A n \in Nodes : \A msg \in mailbox[n] :
          /\ msg.phase = "down" => 
             /\ n \in outgoing[msg.sndr]
             /\ \A mm \in mailbox[n] : \* at most one message per neighbor
                   mm.phase = "down" /\ mm.sndr = msg.sndr => mm = msg
          /\ msg.phase = "up" => 
             /\ msg.sndr \in outgoing[n]
             /\ \A mm \in mailbox[n] : \* at most one message per neighbor
                   mm.phase = "up" /\ mm.sndr = msg.sndr => mm = msg

------------------------------------------------------------------------------
(****************************************************************************)
(* Yo-Yo algorithm as a state machine.                                      *)
(****************************************************************************)
Init == 
    /\ active = [n \in Nodes |-> TRUE]
    /\ phase = [n \in Nodes |-> "down"]
    /\ mailbox = [n \in Nodes |-> {}]
    /\ \E Nbrs \in SUBSET Edges :
          \* true by construction
          \* /\ IsLoopFreeUndirectedGraph([node |-> Nodes, edge |-> Nbrs])
          /\ IsStronglyConnected([node |-> Nodes, edge |-> Nbrs])
          /\ incoming = [n \in Nodes |-> {m \in Nodes : {m,n} \in Nbrs /\ m < n}]
          /\ outgoing = [n \in Nodes |-> {m \in Nodes : {m,n} \in Nbrs /\ m > n}]

------------------------------------------------------------------------------
(****************************************************************************)
(* Down phase: we distinguish sources and other nodes.                      *)
(* Note that a node retains "down" messages after executing the phase       *)
(* because they are used during the up phase.                               *)
(****************************************************************************)
DownSource(n) == 
    /\ active[n]
    /\ kind(n) = "source"
    /\ phase[n] = "down"
    /\ mailbox' = [m \in Nodes |-> 
        IF m \in outgoing[n] THEN mailbox[m] \cup {downMsg(n,n)}
        ELSE mailbox[m]]
    /\ phase' = [phase EXCEPT ![n] = "up"]
    /\ UNCHANGED <<active, incoming, outgoing>>

DownOther(n) == 
    /\ active[n]
    /\ kind(n) \in {"internal", "sink"}
    /\ phase[n] = "down"
    /\ LET downMsgs == {msg \in mailbox[n] : msg.phase = "down"}
       IN  /\ {msg.sndr : msg \in downMsgs} = incoming[n]
           /\ LET min == Min({msg.val : msg \in downMsgs})
              IN mailbox' = [m \in Nodes |->
                             IF m \in outgoing[n] 
                             THEN mailbox[m] \cup {downMsg(n,min)}
                             ELSE mailbox[m]]
    /\ phase' = [phase EXCEPT ![n] = "up"]
    /\ UNCHANGED <<active, incoming, outgoing>>

Down(n) == DownSource(n) \/ DownOther(n)

------------------------------------------------------------------------------
(****************************************************************************)
(* Up phase, again distinguishing sources and other nodes.                  *)
(*                                                                          *)
(* An internal or source node may already have received "down" messages     *)
(* for the following round from neighbors that it still considers as        *)
(* outgoing neighbors but for which the edge direction was reversed.        *)
(* We therefore have to be careful to only consider "down" messages from    *)
(* neighbors that the node considers as incoming, and also to preserve      *)
(* "down" messages for the following round when cleaning the mailbox.       *)
(****************************************************************************)
UpSource(n) ==
    /\ active[n]
    /\ kind(n) = "source"
    /\ phase[n] = "up"
    /\ LET upMsgs == {msg \in mailbox[n] : msg.phase = "up"}
           noSndrs == {msg.sndr : msg \in {mm \in upMsgs : mm.reply = "no"}}
           pruned == {msg.sndr : msg \in {mm \in upMsgs : mm.prune}}
       IN  /\ {msg.sndr : msg \in upMsgs} = outgoing[n]
           /\ mailbox' = [mailbox EXCEPT ![n] = mailbox[n] \ upMsgs]
           /\ incoming' = [incoming EXCEPT ![n] = noSndrs \ pruned]
           /\ outgoing' = [outgoing EXCEPT ![n] = @ \ (noSndrs \union pruned)]
    /\ phase' = [phase EXCEPT ![n] = "down"]
    /\ active' = active

UpOther(n) ==
    /\ active[n]
    /\ kind(n) \in {"internal", "sink"}
    /\ phase[n] = "up"
    /\ LET upMsgs == {msg \in mailbox[n] : msg.phase = "up"}
           noSndrs == {msg.sndr : msg \in {mm \in upMsgs : mm.reply = "no"}}
           pruned == {msg.sndr : msg \in {mm \in upMsgs : mm.prune}}
           downMsgs == {msg \in mailbox[n] : msg.phase = "down" /\ msg.sndr \in incoming[n]}
           valsRcvd == {msg.val : msg \in downMsgs}
           senders(v) == {m \in incoming[n] : downMsg(m,v) \in downMsgs}
           valSent(m) == (CHOOSE msg \in downMsgs : msg.sndr = m).val
           isLoneSink == kind(n) = "sink" /\ Cardinality(incoming[n]) = 1
       IN  /\ {msg.sndr : msg \in upMsgs} = outgoing[n]  \* always true for sinks
           /\ \* non-deterministically choose a sender for each value whose link
              \* will not be pruned
              \E keep \in {f \in [valsRcvd -> incoming[n]] :
                             \A v \in valsRcvd : f[v] \in senders(v)} :
                 /\ IF noSndrs = {}  \* true in particular for sinks
                    THEN LET min == Min({msg.val : msg \in downMsgs})
                             minSndrs == {msg.sndr : msg \in {mm \in downMsgs : mm.val = min}}
                         IN  /\ mailbox' = [m \in Nodes |->
                                  IF m \in incoming[n]
                                  THEN mailbox[m] \union 
                                    {upMsg(n, 
                                           IF m \in minSndrs THEN "yes" ELSE "no",
                                           (m # keep[valSent(m)]) \/ isLoneSink)}
                                  ELSE IF m = n THEN mailbox[m] \ (upMsgs \union downMsgs)
                                  ELSE mailbox[m]]
                             /\ incoming' = [incoming EXCEPT ![n] = 
                                                IF isLoneSink THEN {} ELSE {keep[min]}]
                             /\ outgoing' = [outgoing EXCEPT ![n] = 
                                                (@ \ pruned) \union 
                                                {keep[v] : v \in valsRcvd \ {min}}]
                    ELSE /\ mailbox' = [m \in Nodes |->
                              IF m \in incoming[n] 
                              THEN mailbox[m] \union {upMsg(n, "no", m # keep[valSent(m)])}
                              ELSE IF m = n THEN mailbox[m] \ (upMsgs \union downMsgs)
                              ELSE mailbox[m]]
                         /\ incoming' = [incoming EXCEPT ![n] = noSndrs \ pruned]
                         /\ outgoing' = [outgoing EXCEPT ![n] = 
                                            (@ \ (noSndrs \union pruned)) \union
                                            {keep[v] : v \in valsRcvd}]
                 /\ active' = [active EXCEPT ![n] = ~ isLoneSink]
    /\ phase' = [phase EXCEPT ![n] = "down"]

Up(n) == UpSource(n) \/ UpOther(n)

------------------------------------------------------------------------------

Next == \E n \in Nodes : Down(n) \/ Up(n)

Spec == Init /\ [][Next]_vars /\ WF_vars(Next)

------------------------------------------------------------------------------
(****************************************************************************)
(* Formulas used for verification.                                          *)
(****************************************************************************)

(****************************************************************************)
(* Predicate asserting that there will always be at least two source nodes. *)
(* Checking this as an invariant produces an execution that shows that all  *)
(* sources except for the leader will be eliminated.                        *)
(****************************************************************************)
MoreThanOneSource == \E s1, s2 \in Nodes :
    s1 # s2 /\ kind(s1) = "source" /\ kind(s2) = "source"

(****************************************************************************)
(* Node m is an outgoing neighbor of node n iff n is an incoming neighbor   *)
(* of m, except if the edge is being reversed, in which case there is a     *)
(* "no" message in one of the mailboxes, or if the edge is being pruned,    *)
(* in which case there is a corresponding message pending at node n.        *)
(****************************************************************************)
NeighborInv == \A m,n \in Nodes :
  m \in outgoing[n] <=> 
    \/ n \in incoming[m]
    \/ /\ n \in outgoing[m] 
       /\ \/ upMsg(n, "no", FALSE) \in mailbox[m] 
          \/ upMsg(m, "no", FALSE) \in mailbox[n]
    \/ /\ n \notin (incoming[m] \union outgoing[m])
       /\ \E r \in {"yes", "no"} : upMsg(m, r, TRUE) \in mailbox[n]

(****************************************************************************)
(* Termination condition: the node with smallest identity is the leader,    *)
(* all other nodes are inactive, all mailboxes are empty.                   *)
(* Check that the algorithm will reach such a state, and that this is the   *)
(* only final (deadlock) state.                                             *)
(****************************************************************************)
Termination == \A n \in Nodes :
    /\ IF n = Min(Nodes) THEN kind(n) = "leader" ELSE ~ active[n]
    /\ mailbox[n] = {}

Liveness == <>Termination
FinishIffTerminated == ~(ENABLED Next) <=> Termination
==============================================================================