Added preprocessing pass that propagates unconstrained values - solves all of
[cvc5.git] / test / regress / regress0 / unconstrained / arith7.smt2
1 (set-logic QF_AUFLIRA)
2 (set-info :smt-lib-version 2.0)
3 (set-info :category "crafted")
4 (set-info :status unsat)
5 (declare-fun v1 () Int)
6 (declare-fun v2 () Real)
7 (assert (= (/ v1 2) v2))
8 (assert (< v2 (/ 1 2)))
9 (assert (> v2 0))
10 (check-sat)
11 (exit)