summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/div.04.smt2
blob: c30b1cd2f2db90554a5ad508611f22606b2f9a89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(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 (not (=> (= x y) (= (/ x n) (/ y n)))))
(assert (<= n 0))
(assert (>= n 0))

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