Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove writing state-space statistics after the demise of cimetrics. #6518

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions tla/consensus/MCccfraft.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ POSTCONDITION
CONSTRAINTS
CoverageExpressions

_PERIODIC
SerializeCoverage

PROPERTIES
CommittedLogAppendOnlyProp
MonotonicTermProp
Expand Down
5 changes: 2 additions & 3 deletions tla/consensus/MCccfraft.tla
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---------- MODULE MCccfraft ----------
EXTENDS ccfraft, StatsFile, MCAliases, TLC, IOUtils
EXTENDS ccfraft, MCAliases, TLC, IOUtils

CONSTANTS
NodeOne, NodeTwo, NodeThree
Expand Down Expand Up @@ -168,8 +168,7 @@ AreAllCovered ==
----

PostConditions ==
/\ WriteStatsFile
/\ AreAllCovered
AreAllCovered

----
\* Refinement
Expand Down
6 changes: 0 additions & 6 deletions tla/consensus/SIMccfraft.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ CONSTANTS
NodeFour = n4
NodeFive = n5

StatsFilename = "SIMccfraft_stats.json"
CoverageFilename = "SIMccraft_coverage.json"

Timeout <- SIMTimeout
ChangeConfigurationInt <-SIMChangeConfigurationInt
CheckQuorum <- SIMCheckQuorum
Expand Down Expand Up @@ -69,9 +66,6 @@ PROPERTIES
NeverCommitEntryPrevTermsProp
RefinementToAbsProp

POSTCONDITION
WriteStatsFile

\* ALIAS
\* \* DebugAlias
\* \* DebugActingServerAlias
Expand Down
2 changes: 1 addition & 1 deletion tla/consensus/SIMccfraft.tla
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---------- MODULE SIMccfraft ----------
EXTENDS ccfraft, TLC, Integers, StatsFile, IOUtils, MCAliases
EXTENDS ccfraft, TLC, Integers, IOUtils, MCAliases

CONSTANTS
NodeOne, NodeTwo, NodeThree, NodeFour, NodeFive
Expand Down
Loading