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 following instance, z3 8061765 incorrectly gives unsat with (check-sat-using qsat).
It is unclear if this is related to #7217.
$ cat small.smt2
(declare-const x Real)
(declare-fun s () Real)
(declare-fun o () Real)
(assert (and (or (> 1 1) (< x (* s s (- x 1.0))) (= 1.0 (/ s (* s (- 1))))) (or true (and (= 1.0 (/ 0 s)) (or (= o 0) (= s 1.0)) (= 1.0 1.0) (< o (* s x))))))
(check-sat-using qsat)
(check-sat)
$ z3 small.smt2
unsat
sat
The text was updated successfully, but these errors were encountered:
Hi,
For this following instance, z3 8061765 incorrectly gives
unsat
with(check-sat-using qsat)
.It is unclear if this is related to #7217.
The text was updated successfully, but these errors were encountered: