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

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

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