Exclude messagesSent variable s.t. two states are considered equal if they only differ in the number of messages sent. (#4471)

This commit is contained in:
Markus Alexander Kuppe 2022-11-08 03:08:33 -08:00 коммит произвёл GitHub
Родитель 7041ef31dc
Коммит a5d0dce264
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -35,6 +35,7 @@ CONSTANTS
NodeFive = n5
SYMMETRY Symmetry
VIEW View
CHECK_DEADLOCK
FALSE

Просмотреть файл

@ -45,6 +45,9 @@ mc_spec == Spec
\* via the Symmetry option in cfg file.
Symmetry == Permutations(Servers_mc)
\* Include all variables in the view, which is similar to defining no view.
View == vars
----
\* Returns true if server i has committed value v, false otherwise

Просмотреть файл

@ -45,4 +45,7 @@ mc_spec == Spec
\* via the Symmetry option in cfg file.
Symmetry == Permutations(Servers_mc)
\* Exclude messagesSent variable s.t. two states are considered equal if they only differ in the number of messages sent.
View == << reconfigurationVars, <<messages, commitsNotified>>, serverVars, candidateVars, leaderVars, logVars >>
===================================