├── .gitignore ├── Animation.tla ├── README.md ├── examples ├── Elevator │ ├── Elevator.tla │ ├── ElevatorAnimated.tla │ └── elevator.html ├── LogVisibility │ ├── LogVisibility.tla │ ├── LogVisibilityAnimated.tla │ └── log_visibility.html ├── Raft │ ├── RaftAnimated.tla │ ├── RaftSimpler.tla │ └── raft_majority_rollback.html └── template.html └── new_examples └── Elevator ├── .gitignore ├── Elevator.tla ├── ElevatorAnimated.tla ├── MCElevatorAnimated.cfg ├── MCElevatorAnimated.tla ├── README.md ├── aliases.sh ├── get_tlatools.sh ├── model_check.sh ├── template.html ├── traceExp.txt └── trace_explore.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.toolbox 2 | *.pdf 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Animation.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/Animation.tla -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/README.md -------------------------------------------------------------------------------- /examples/Elevator/Elevator.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Elevator/Elevator.tla -------------------------------------------------------------------------------- /examples/Elevator/ElevatorAnimated.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Elevator/ElevatorAnimated.tla -------------------------------------------------------------------------------- /examples/Elevator/elevator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Elevator/elevator.html -------------------------------------------------------------------------------- /examples/LogVisibility/LogVisibility.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/LogVisibility/LogVisibility.tla -------------------------------------------------------------------------------- /examples/LogVisibility/LogVisibilityAnimated.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/LogVisibility/LogVisibilityAnimated.tla -------------------------------------------------------------------------------- /examples/LogVisibility/log_visibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/LogVisibility/log_visibility.html -------------------------------------------------------------------------------- /examples/Raft/RaftAnimated.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Raft/RaftAnimated.tla -------------------------------------------------------------------------------- /examples/Raft/RaftSimpler.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Raft/RaftSimpler.tla -------------------------------------------------------------------------------- /examples/Raft/raft_majority_rollback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/Raft/raft_majority_rollback.html -------------------------------------------------------------------------------- /examples/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/examples/template.html -------------------------------------------------------------------------------- /new_examples/Elevator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/.gitignore -------------------------------------------------------------------------------- /new_examples/Elevator/Elevator.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/Elevator.tla -------------------------------------------------------------------------------- /new_examples/Elevator/ElevatorAnimated.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/ElevatorAnimated.tla -------------------------------------------------------------------------------- /new_examples/Elevator/MCElevatorAnimated.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/MCElevatorAnimated.cfg -------------------------------------------------------------------------------- /new_examples/Elevator/MCElevatorAnimated.tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/MCElevatorAnimated.tla -------------------------------------------------------------------------------- /new_examples/Elevator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/README.md -------------------------------------------------------------------------------- /new_examples/Elevator/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/aliases.sh -------------------------------------------------------------------------------- /new_examples/Elevator/get_tlatools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/get_tlatools.sh -------------------------------------------------------------------------------- /new_examples/Elevator/model_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/model_check.sh -------------------------------------------------------------------------------- /new_examples/Elevator/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/template.html -------------------------------------------------------------------------------- /new_examples/Elevator/traceExp.txt: -------------------------------------------------------------------------------- 1 | View -------------------------------------------------------------------------------- /new_examples/Elevator/trace_explore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will62794/tlaplus_animation/HEAD/new_examples/Elevator/trace_explore.sh --------------------------------------------------------------------------------