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.
2 parents 4e11cbc + a22bb78 commit 857e19fCopy full SHA for 857e19f
regression/smv/LTL/smv_ltlspec_X1.desc
@@ -0,0 +1,10 @@
1
+CORE
2
+smv_ltlspec_X1.smv
3
+
4
+^\[.*\] X x & x: REFUTED$
5
6
+^\[.*\] X \(x & x\): PROVED \(CT=1\)$
7
+^EXIT=10$
8
+^SIGNAL=0$
9
+--
10
+^warning: ignoring
regression/smv/LTL/smv_ltlspec_X1.smv
@@ -0,0 +1,11 @@
+MODULE main
+VAR x : boolean;
+ASSIGN next(x) := TRUE;
+ init(x) := FALSE;
+-- X binds stronger than &
+LTLSPEC X x & x -- should parse as (X x) & x
+LTLSPEC (X x) & x -- should fail
11
+LTLSPEC X (x & x) -- should pass
0 commit comments