i... dont know what to commit

This commit is contained in:
2018-12-27 16:07:37 +01:00
commit 70c944a2b7
88 changed files with 5671 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
\* INIT definition
INIT
init_15454038741536000
\* NEXT definition
NEXT
next_15454038741537000
\* Generated on Fri Dec 21 15:51:14 CET 2018

View File

@@ -0,0 +1,14 @@
---- MODULE MC ----
EXTENDS SimpleProgram, TLC
\* INIT definition @modelBehaviorInit:0
init_15454038741536000 ==
Init
----
\* NEXT definition @modelBehaviorNext:0
next_15454038741537000 ==
Next
----
=============================================================================
\* Modification History
\* Created Fri Dec 21 15:51:14 CET 2018 by veitheller

View File

@@ -0,0 +1,21 @@
--------------------------- MODULE SimpleProgram ---------------------------
EXTENDS Integers
VARIABLES i, pc
Init == (pc = "start") /\ (i = 0)
Pick == /\ pc = "start"
/\ i' \in 0..1000
/\ pc' = "middle"
Add1 == /\ pc = "middle"
/\ i' = i + 1
/\ pc' = "done"
Next == Pick \/ Add1
=============================================================================
\* Modification History
\* Last modified Fri Dec 21 15:46:32 CET 2018 by veitheller
\* Created Fri Dec 21 15:45:07 CET 2018 by veitheller