File tree Expand file tree Collapse file tree 6 files changed +47
-0
lines changed
Expand file tree Collapse file tree 6 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ CORE
2+ next1.smv
3+ --bdd
4+ ^\[.*\] !x: PROVED$
5+ ^\[.*\] AX x: PROVED$
6+ ^EXIT=0$
7+ ^SIGNAL=0$
8+ --
Original file line number Diff line number Diff line change 1+ MODULE main
2+
3+ VAR x : boolean;
4+
5+ INIT !x
6+ TRANS next(x)
7+
8+ CTLSPEC !x
9+ CTLSPEC AX x
Original file line number Diff line number Diff line change 1+ CORE
2+ next2.smv
3+ --bdd
4+ ^\[.*\] AX x <-> !x: PROVED$
5+ ^EXIT=0$
6+ ^SIGNAL=0$
7+ --
Original file line number Diff line number Diff line change 1+ MODULE main
2+
3+ VAR x : boolean;
4+
5+ TRANS next(x)=!x
6+
7+ CTLSPEC (AX x) <-> !x
Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ next3.smv
3+ --bdd
4+ ^\[.*\] AX x <-> !x: PROVED$
5+ ^EXIT=0$
6+ ^SIGNAL=0$
7+ --
8+ --
9+ The BDD engine gives the wrong answer.
Original file line number Diff line number Diff line change 1+ MODULE main
2+
3+ VAR x : boolean;
4+
5+ TRANS next(!x)=x
6+
7+ CTLSPEC (AX x) <-> !x
You can’t perform that action at this time.
0 commit comments