aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/sat6.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/sat6.smt2')
-rw-r--r--unit-tests/sat6.smt210
1 files changed, 10 insertions, 0 deletions
diff --git a/unit-tests/sat6.smt2 b/unit-tests/sat6.smt2
new file mode 100644
index 0000000..acef584
--- /dev/null
+++ b/unit-tests/sat6.smt2
@@ -0,0 +1,10 @@
+(set-logic QF_UF)
+(declare-fun a () Bool)
+(declare-fun b () Bool)
+(declare-fun c () Bool)
+(declare-fun d () Bool)
+(assert (and a b))
+(assert (or c d))
+(assert (not (or c (and a b d))))
+(check-sat)
+(exit)