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
Bizarrely the bug disappears when the unsat_core option is disabled. By replacing the (check-sat-using (then sat bv)) by (check-sat), I get unsat.
(check-sat-using (then sat bv))
(check-sat)
unsat
$z3release bug.smt2 sat (error "line 4 column 30: an invalid model was generated") $cat bug.smt2 (set-option :unsat_core true) (set-option :model_validate true) (assert (! (not (<= 0 0)) :named a)) (check-sat-using (then sat bv))
OS: Ubuntu 18.04 Commit: 785c9a1
The text was updated successfully, but these errors were encountered:
16d34b9
No branches or pull requests
Bizarrely the bug disappears when the unsat_core option is disabled. By replacing the
(check-sat-using (then sat bv))
by(check-sat)
, I getunsat
.OS: Ubuntu 18.04
Commit: 785c9a1
The text was updated successfully, but these errors were encountered: