summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/rewriting-sums.smt2
blob: 74c38c84166b469296d692ec5d507633914b2c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; COMMAND-LINE: --nl-ext=full
; EXPECT: unsat
(set-logic QF_NIA)
(set-info :status unsat)
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)


(assert (or (= x 5) (= x 7) (= x 9)))

(assert (or (= y (+ x 1)) (= y (+ x 2))))

(assert (or (= z (+ y 5)) (= z (+ y 10))))

(assert (> (* z z) 1000000000))

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