summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
committerMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
commit2a9e6970b971eb0a9ac4c216fe5f5f1542e195e0 (patch)
tree23631643798b923b7e9883286296269c8f5e772d /test/regress
parent1e59e3f37ecb7b84371691358f3eb3804a845c04 (diff)
fixed CNF conversion, and more modular; CNF conversion command line option; various cleanups; renamed numChildren() to getNumChildren() and added it to NodeBuilder interface; fancier, non-exponential CNF conversion with variable introduction is still buggy (?)
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/simple.cvc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress/simple.cvc b/test/regress/simple.cvc
index c1a5dd840..3566053d9 100644
--- a/test/regress/simple.cvc
+++ b/test/regress/simple.cvc
@@ -2,5 +2,5 @@ x0, x1, x2, x3 : BOOLEAN;
ASSERT x1 OR NOT x0;
ASSERT x0 OR NOT x3;
ASSERT x3 OR x2;
-ASSERT NOT x1;
+ASSERT x1 AND NOT x1;
QUERY x2;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback