learning_tla/lamport_video/specs/TCommit.cfg
2025-02-17 18:08:25 +01:00

25 lines
No EOL
867 B
INI

(**********************************************)
(* Initial predicate and next-state relation. *)
(* Alternatively, you can comment out these *)
(* and use SPECIFICATION. *)
(**********************************************)
INIT TCInit
NEXT TCNext
(**********************************************)
(* Specify the values of declared constants. *)
(**********************************************)
\* CONSTANT MyConstant = {0, 1}
CONSTANT RM = {rm1}
(**********************************************)
(* Formulas true in every reachable state. *)
(**********************************************)
\* INVARIANT MyInvariant
INVARIANT TCTypeOK
INVARIANT TCConsistent
(**********************************************)
(* Disable checking deadlock. *)
(**********************************************)
CHECK_DEADLOCK FALSE
PROPERTY TCSpec