Created
February 24, 2017 05:38
-
-
Save kbastani/9fca0e4e172d9ad2505cd3e0c5b4c067 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VARIABLE clock | |
Init == clock \in {0, 1} | |
Tick == IF clock = 0 THEN clock' = 1 ELSE clock' = 0 | |
Spec == Init /\ [][Tick]_<<clock>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment