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
9 changes: 9 additions & 0 deletions regression/ebmc-spot/ltl-buechi/implies3.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
implies3.smv
--buechi --bound 5
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
This fails since Spot uses a different atom numbering than we do.
14 changes: 14 additions & 0 deletions regression/ebmc-spot/ltl-buechi/implies3.smv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
MODULE main

VAR x : 0..3;

ASSIGN
init(x) := 1;

next(x) :=
case
x=3 : 3;
TRUE: x+1;
esac;

LTLSPEC ! (F x = 1 -> F x = 0) -- should pass
14 changes: 14 additions & 0 deletions regression/ebmc-spot/sva-buechi/sequence_and1.bdd.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
KNOWNBUG
../../verilog/SVA/sequence_and1.sv
--buechi --bdd
^\[main\.p0\] main\.x == 0 and main\.x == 1: REFUTED$
^\[main\.p1\] strong\(main\.x == 0 and main\.x == 1\): REFUTED$
^\[main\.p2\] main\.x == 0 and \(nexttime main\.x == 1\): PROVED$
^\[main\.p3\] \(nexttime main\.x == 1\) and main\.x == 0: PROVED$
^\[main\.p4\] \(main\.x == 0 and main\.x != 10\) |=> main\.x == 1: PROVED$
^EXIT=10$
^SIGNAL=0$
--
^warning: ignoring
--
This fails since Spot's AP numbering differs.
14 changes: 14 additions & 0 deletions regression/ebmc-spot/sva-buechi/sequence_and1.bmc.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
KNOWNBUG
../../verilog/SVA/sequence_and1.sv
--buechi
^\[main\.p0\] main\.x == 0 and main\.x == 1: REFUTED$
^\[main\.p1\] strong\(main\.x == 0 and main\.x == 1\): REFUTED$
^\[main\.p2\] main\.x == 0 and \(nexttime main\.x == 1\): PROVED up to bound \d+$
^\[main\.p3\] \(nexttime main\.x == 1\) and main\.x == 0: PROVED up to bound \d+$
^\[main\.p4\] \(main\.x == 0 and main\.x != 10\) |=> main\.x == 1: PROVED up to bound \d+$
^EXIT=10$
^SIGNAL=0$
--
^warning: ignoring
--
This fails since Spot's AP numbering differs.
Loading