You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
For this instance, z3 eb2ee34 incorrectly gives sat.
$ z3 small.smt2
unsat
$ z3 rewriter.sort_sums=true small.smt2
sat
$ cat small.smt2
(declare-const x Real)
(declare-fun a () Real)
(declare-fun v () Real)
(declare-fun ex () Real)
(assert (exists ((t Real)) (< (- 1) ex)))
(assert (forall ((e Real)) (exists ((V Real)) (= (* ex ex (+ (* v a) ex)) (+ x (* e e (- 1)))))))
(check-sat)
The text was updated successfully, but these errors were encountered:
Hi,
For this instance, z3 eb2ee34 incorrectly gives
sat
.The text was updated successfully, but these errors were encountered: