playground/nusmv/one.smv

10 lines
217 B
Plaintext

MODULE main
VAR
location: {l1,l2};
ASSIGN
init(location) := l1;
next(location) := case
(location = l1) : l2;
(location = l2) : l1;
esac;