We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da965b7 commit a07b5eaCopy full SHA for a07b5ea
regression/ebmc-spot/ltl-buechi/implies3.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+implies3.smv
3
+--buechi --bound 5
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+This fails since Spot uses a different atom numbering than we do.
regression/ebmc-spot/ltl-buechi/implies3.smv
@@ -0,0 +1,14 @@
+MODULE main
+
+VAR x : 0..3;
+ASSIGN
+ init(x) := 1;
+ next(x) :=
+ case
10
+ x=3 : 3;
11
+ TRUE: x+1;
12
+ esac;
13
14
+LTLSPEC ! (F x = 1 -> F x = 0) -- should pass
0 commit comments