We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, For this instance, z3 b0605a9 gives unsat with (check-sat-using qe).
unsat
(check-sat-using qe)
$ z3 small.smt2 unsat sat $ cat small.smt2 (declare-fun a () Bool) (declare-fun v () String) (assert (forall ((v Int)) (exists ((V Bool)) (or a (= a (= 0 v)))))) (assert (forall ((a Int)) (= 0 (str.indexof v v)))) (check-sat-using qe) (check-sat)
The text was updated successfully, but these errors were encountered:
Another instance with smt.bv.eq_axioms:
smt.bv.eq_axioms
$ cat small.smt2 (declare-const x Bool) (set-option :smt.bv.eq_axioms false) (declare-fun a () String) (declare-fun va () Int) (assert (forall ((V Int)) (= a (str.++ a)))) (assert (forall ((v Int)) (or x (= va v)))) (check-sat-using qe) (check-sat) $ z3 small.smt2 unsat sat
Sorry, something went wrong.
This is a duplicate of an old bug on qe
#5932
5154295
No branches or pull requests
Hi,
For this instance, z3 b0605a9 gives
unsat
with(check-sat-using qe)
.The text was updated successfully, but these errors were encountered: