summaryrefslogtreecommitdiff
path: root/test/regress/logops.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/logops.cvc')
-rw-r--r--test/regress/logops.cvc14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/regress/logops.cvc b/test/regress/logops.cvc
deleted file mode 100644
index 35e080992..000000000
--- a/test/regress/logops.cvc
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-a, b, c: BOOLEAN;
-
-%% QUERY (a XOR b) <=> (NOT a AND b) OR (NOT b AND a);
-
-%% QUERY NOT c AND b;
-
-QUERY (IF c THEN a ELSE b ENDIF) <=> ((c AND a) OR (NOT c AND b));
-
-%% 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