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
I found some issues in the Python plugin API. The decide method uses the undefined variable t_ref:
decide
t_ref
z3/src/api/python/z3/z3.py
Line 11668 in c0e748a
self.decide
Line 11787 in c0e748a
Line 11728 in c0e748a
The text was updated successfully, but these errors were encountered:
Proposed fix for Z3Prover#7451
993ddc6
Proposed fix for #7451 (#7452)
d3009da
Successfully merging a pull request may close this issue.
I found some issues in the Python plugin API. The
decide
method uses the undefined variablet_ref
:z3/src/api/python/z3/z3.py
Line 11668 in c0e748a
Also, registering a
decide
refers to the undefined propertyself.decide
:z3/src/api/python/z3/z3.py
Line 11787 in c0e748a
which should have been declared here:
z3/src/api/python/z3/z3.py
Line 11728 in c0e748a
The text was updated successfully, but these errors were encountered: