summaryrefslogtreecommitdiff
path: root/test/regress/regress0/nl/disj-eval.smt2
blob: ac8cfc937f11817692a77235a2dc6f2cc7babbd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --nl-ext
; EXPECT: sat
(set-logic QF_NIA)
(set-info :status sat)
(declare-fun x () Int)
(declare-fun y () Int)

(assert (or (= x 5) (= x 7) (= x 9) (= x 27) (= x 10)))
(assert (or (= y 0) (= y 1) (= y 9) (= y 8)))


(assert (= (* x x) (* y y y)))

(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback