summaryrefslogtreecommitdiff
path: root/test/regress/regress0/fp/abs-unsound.smt2
blob: 4ac53b8307208cd13002fa2b6d43e39a2e9cf252 (plain)
1
2
3
4
5
6
7
8
9
10
11
; REQUIRES: symfpu
; EXPECT: sat
(set-logic QF_FP)
(set-info :status sat)
(declare-fun x () (_ FloatingPoint 3 5))
(declare-fun y () (_ FloatingPoint 3 5))

(assert (not (= (fp.abs (fp.abs x)) x)))
(assert (not (= (fp.abs (fp.neg y)) y)))

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