Skip to content

Commit

Permalink
Actually exclude removed servers
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou committed Oct 4, 2023
1 parent ed88214 commit 000845f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tla/ccfraft.tla
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ PlausibleSucessorNode(i) ==
\* node as the implementation, which iterates through an unordered_map
\* when performing its selection with the same criteria.
LET
activeServers == Servers \intersect removedFromConfiguration
activeServers == Servers \ removedFromConfiguration
highestMatchServers == {n \in activeServers : \A m \in activeServers : matchIndex[i][n] >= matchIndex[i][m]}
highestConfigServers == {n \in highestMatchServers : \A m \in highestMatchServers: MaxConfigurationIndex(n) >= MaxConfigurationIndex(m)}
IN
Expand Down

0 comments on commit 000845f

Please sign in to comment.