f9e5169c3d
- mvcc.tla: Add CommitProgress liveness (verified with WF_vars) - raft/twopc/mvcc/gossip: Add Spec definitions with WF_vars(Next) - gossip.tla: Fix LearnViaGossip strength-based filtering (prevents overwriting Dead/Suspect with weaker state) - twopc.tla: Add DecideCommitAction/DecideAbortAction for SF fairness - Update all .cfg files to use SPECIFICATION Spec - Update CHANGELOG.md -> v1.1.0, VERSION -> 1.1.0, PLAN.md
19 lines
232 B
INI
19 lines
232 B
INI
CONSTANTS
|
|
Nodes = {n1, n2, n3}
|
|
Nil = Nil
|
|
MaxTerm = 3
|
|
MaxLogLen = 3
|
|
|
|
SPECIFICATION Spec
|
|
|
|
CHECK_DEADLOCK FALSE
|
|
|
|
INVARIANTS
|
|
TypeOk
|
|
ElectionSafety
|
|
LeaderAppendOnly
|
|
StateMachineSafety
|
|
CommittedIndexValid
|
|
LogMatching
|
|
|