Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
KTLA Study
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
KTLA Study
Commits
ed1bdd4b
Commit
ed1bdd4b
authored
Feb 11, 2022
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
31931cdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Route.tla
Route.tla
+3
-4
No files found.
Route.tla
View file @
ed1bdd4b
...
...
@@ -31,7 +31,6 @@ ReachableFrom(S) ==
IF S_ = S THEN S
ELSE ReachableFrom(S_)
ASSUME ReachableFrom({root}) = Nodes
...
...
@@ -83,7 +82,7 @@ QueuesTo(n) == {q \in Queues : q[2] = n}
parent := q[1];
\* send m further to all neighbours except from whom we received it
with (msgs__ = [t \in Queues |->
IF t \in QueuesFrom(self) \ {<<self,
parent>>}
IF t \in QueuesFrom(self) \ {<<self,
q[1]>>} \* XXX not q[1]->parent would be incorrect
THEN Append(msgs_[t], depth)
ELSE msgs_[t] ])
msgs := msgs__;
...
...
@@ -97,7 +96,7 @@ QueuesTo(n) == {q \in Queues : q[2] = n}
}
};
********)
\* BEGIN TRANSLATION (chksum(pcal) = "
ef4913a" /\ chksum(tla) = "2e68ab65
")
\* BEGIN TRANSLATION (chksum(pcal) = "
a6173f58" /\ chksum(tla) = "9d62fe6c
")
VARIABLES msgs, depth, parent
vars == << msgs, depth, parent >>
...
...
@@ -119,7 +118,7 @@ RT(self) == \E q \in {r \in QueuesTo(self) : msgs[r] /= << >>}:
THEN /\ depth' = [depth EXCEPT ![self] = m + 1]
/\ parent' = [parent EXCEPT ![self] = q[1]]
/\ LET msgs__ == [t \in Queues |->
IF t \in QueuesFrom(self) \ {<<self,
parent'[self
]>>}
IF t \in QueuesFrom(self) \ {<<self,
q[1
]>>}
THEN Append(msgs_[t], depth'[self])
ELSE msgs_[t] ] IN
msgs' = msgs__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment