summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/logops.cvc10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/regress/logops.cvc b/test/regress/logops.cvc
index 663a659f3..35e080992 100644
--- a/test/regress/logops.cvc
+++ b/test/regress/logops.cvc
@@ -2,11 +2,13 @@
a, b, c: BOOLEAN;
-QUERY (a XOR b) <=> (NOT a AND b) OR (NOT b AND a);
+%% QUERY (a XOR b) <=> (NOT a AND b) OR (NOT b AND a);
-QUERY (IF c THEN a ELSE b ENDIF) <=> (c AND a) OR (NOT c AND b);
+%% QUERY NOT c AND b;
-QUERY (a => b) <=> (NOT a OR b);
+QUERY (IF c THEN a ELSE b ENDIF) <=> ((c AND a) OR (NOT c AND b));
-QUERY TRUE XOR FALSE;
+%% QUERY (a => b) <=> (NOT a OR b);
+
+%% QUERY TRUE XOR FALSE;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback