summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/div.07.smt2
blob: 4c45b32c803545340bc31cfea1b1d71af1501ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(set-logic QF_NRA)
(set-info :smt-lib-version 2.0)
(set-info :status unsat)
(declare-fun x () Real)
(declare-fun y () Real)
(declare-fun n () Real)

(assert (= (/ x n) 0))
(assert (= (/ y (/ x n)) 1))
(assert (<= n 0))
(assert (>= n 0))
(assert (= x y))

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