aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/lia1.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/lia1.smt2')
-rw-r--r--unit-tests/lia1.smt27
1 files changed, 7 insertions, 0 deletions
diff --git a/unit-tests/lia1.smt2 b/unit-tests/lia1.smt2
new file mode 100644
index 0000000..694ec17
--- /dev/null
+++ b/unit-tests/lia1.smt2
@@ -0,0 +1,7 @@
+(set-logic QF_LIA)
+(declare-fun x () Int)
+(declare-fun y () Int)
+(declare-fun z () Int)
+(assert (not (=> (and (<= x 3) (or (<= y 7) (<= z 9))) (or (<= (+ x y) 10) (<= (+ x z) 12)))))
+(check-sat)
+(exit)