summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/shifting2.smt2
blob: c5e805c502cddaf5b31c0a30816ac2a3f2097fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; COMMAND-LINE: --nl-ext
; EXPECT: unsat
(set-logic QF_NIRA)
(set-info :status unsat)
(declare-fun pi () Real)

(assert (and (< 3.0 pi) (< pi 3.5)))

(declare-fun y () Real)
(assert (and (< (- pi) y) (< y pi)))

(declare-fun s () Int)

(declare-fun z () Real)

(assert (= z (+ y (* 2 pi s))))

(assert (and (< (- pi) z) (< z pi)))

(assert (not (= z y)))

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