summaryrefslogtreecommitdiff
path: root/test/regress/regress0/nl/disj-eval.smt2
blob: 717f7a28f580862045051fa0a87477f2d5c6c995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --nl-alg
; 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