summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/sin1-deq-sat.smt2
blob: 4fb0732a375e352a718a1a98e85466a63e4de4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --nl-ext-tf-tplanes --no-check-models --nl-rlv=always
; EXPECT: sat
(set-logic QF_NRAT)
(set-info :status sat)
(declare-fun x () Real)

(assert (not (= (sin 1.0) 0.5)))
(assert (not (= (sin 1.0) 0.8)))
(assert (not (= (sin 1.0) 0.9)))
(assert (not (= (sin 1.0) (- 0.84))))
(assert (< (- x (sin 1)) 0.000001))
(assert (< (- (sin 1) x) 0.000001))

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