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
Nat
import Auto set_option auto.smt true set_option auto.smt.trust true set_option trace.auto.smt.printCommands true set_option trace.auto.smt.result true example : false = true := by auto -- z3 says Sat example : ∃ (n : Int), false = true := by auto -- z3 says Sat example : ∃ (n : Nat), false = true := by auto -- z3 says Unsat /- [auto.smt.printCommands] (assert (! (|not| (exists ((|smtd_0| |Int|)) (|=>| (|>=| |smtd_0| 0) (|=| |false| |true|)))) :named valid_fact_0)) [auto.smt.result] z3 says Unsat, unsat core: (|valid_fact_0|) -/
In the translation of exists, there should be a conjunction rather than implication. As far as I can tell, the bug is due to lamQuantified2STerm.
lamQuantified2STerm
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In the translation of exists, there should be a conjunction rather than implication. As far as I can tell, the bug is due to
lamQuantified2STerm
.The text was updated successfully, but these errors were encountered: