Mercurial > hg > Members > kono > Proof > automaton
view a13/smv/test1.smv @ 146:6663205ed308
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 30 Dec 2020 12:07:07 +0900 |
parents | 0e8a0e50ed26 |
children |
line wrap: on
line source
MODULE main VAR request : boolean; state : {ready, busy}; ASSIGN init(state) := ready; next(state) := case state = ready & request : busy; TRUE : {ready, busy}; esac;