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
Hello,
Z3 abd1674 returns unknown for the following formula. However, the term like (str.<= "" s) within it could be directly simplified to true.
(str.<= "" s)
true
Here’s a minimal example:
$ z3 small.smt2 unknown $ cat small.smt2 (declare-fun v () String) (assert (str.<= "" (str.replace_all v "i" v))) (check-sat)
Thank you for your attention!
The text was updated successfully, but these errors were encountered:
1cc808c
fix #7446, by adding rewrite simplification
c0e748a
Signed-off-by: Nikolaj Bjorner <[email protected]>
No branches or pull requests
Hello,
Z3 abd1674 returns unknown for the following formula. However, the term like
(str.<= "" s)
within it could be directly simplified totrue
.Here’s a minimal example:
Thank you for your attention!
The text was updated successfully, but these errors were encountered: