[1005] % z3-4.8.7 small.smt2
unsat
[1006] % z3release small.smt2
WARNING: found non utvpi logic expression:
(>= (+ c d (* (- 1) (div b a))) 0)
Segmentation fault
[1007] %
[1007] % cat small.smt2
(set-option :smt.arith.solver 4)
(set-option :smt.phase_selection 5)
(set-option :rewriter.eq2ineq true)
(declare-fun a () Int)
(declare-fun b () Int)
(declare-fun c () Int)
(declare-fun d () Int)
(assert (= 0 c 1))
(assert (or (= d 0) (= d 1)))
(assert (= (div b a) (+ d c) 1))
(check-sat)
[1008] %