aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/lia1.smt2
blob: 694ec17afcaeef425f638a8190a994b7e1be74c8 (plain)
1
2
3
4
5
6
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)