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
11 changes: 11 additions & 0 deletions regression/ebmc/BMC/AX1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
KNOWNBUG
AX1.smv
--bound 2
^\[spec1\] AX some_var = TRUE: REFUTED$
^\[spec2\] AX some_var = FALSE: PROVED up to bound 2$
^EXIT=10$
^SIGNAL=0$
--
^warning: ignoring
--
The BMC encoding fails on the temporal operator.
11 changes: 11 additions & 0 deletions regression/ebmc/BMC/AX1.smv
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
MODULE main

VAR some_var : boolean;

INVAR some_var = FALSE

-- should fail
SPEC AX some_var = TRUE

-- should pass
SPEC AX some_var = FALSE
Loading