summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/shifting.smt2
blob: 320c92d587a801f71d5e3597197b1fe6579a3689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; COMMAND-LINE: --nl-ext --nl-ext-tplanes
; EXPECT: sat
(set-logic QF_NIRA)
(set-info :status sat)
(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 (* 2 pi s)))

(assert (> z 60))

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