Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions regression/ebmc/BDD/deadend1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CORE
deadend1.smv
--bdd
^\[spec1\] AX FALSE: PROVED$
^\[spec2\] EX FALSE: PROVED$
^\[spec3\] AX TRUE: PROVED$
^\[spec4\] EX TRUE: PROVED
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
20 changes: 20 additions & 0 deletions regression/ebmc/BDD/deadend1.smv
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
MODULE main

VAR some_var : boolean;

INIT some_var = FALSE

-- the initial state is a deadend state
TRANS FALSE

-- should pass
SPEC AX FALSE

-- should pass
SPEC EX FALSE

-- should pass
SPEC AX TRUE

-- should pass
SPEC EX TRUE
Loading