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, the following returns z3.unknown on PIP package z3-solver ver 4.13.0.0:
z3.unknown
z3-solver
s = z3.Then('elim-term-ite', 'solve-eqs').solver() s.add(z3.BitVec("abc", 12) > z3.BitVecVal(0x200, 12)) s.check() # z3.unknown
s.reason_unknown() returns "unknown". It is not specific to elim-term-ite or solve-eqs.
s.reason_unknown()
"unknown"
elim-term-ite
solve-eqs
I'm confident this is a bug, because the following examples do return z3.sat:
z3.sat
z3.solve(z3.BitVec("abc", 12) > z3.BitVecVal(0x200, 12))
s = z3.Solver() s.add(z3.BitVec("abc", 12) > z3.BitVecVal(0x200, 12)) s.check()
The same happens for <, >, <=, etc
<
>
<=
The text was updated successfully, but these errors were encountered:
try
s = z3.Then('elim-term-ite', 'solve-eqs', 'smt').solver()
otehrwise it will only run the two tactics that you specify and they are not complete solvers.
Sorry, something went wrong.
Great, thanks!
No branches or pull requests
Hi, the following returns
z3.unknown
on PIP packagez3-solver
ver 4.13.0.0:s.reason_unknown()
returns"unknown"
. It is not specific toelim-term-ite
orsolve-eqs
.I'm confident this is a bug, because the following examples do return
z3.sat
:The same happens for
<
,>
,<=
, etcThe text was updated successfully, but these errors were encountered: