summaryrefslogtreecommitdiff
path: root/test/regress/regress1/nl/div-mod-partial.smt2
blob: fa75ee59419c276253be68404f029a59673e1199 (plain)
1
2
3
4
5
6
7
8
9
10
; COMMAND-LINE: --nl-ext --nl-ext-tplanes
; EXPECT: sat
(set-logic QF_UFNIA)
(set-info :status sat)
(declare-fun x () Int)
(declare-fun y () Int)
(assert (not (= y 0)))
; should be SAT if the partial functions for div and mod are different
(assert (not (= (- y (* (div y x) x)) (mod y x))))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback