mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 22:23:22 +00:00
Fix bug in proof checking
This commit is contained in:
parent
dfbd285dae
commit
1de0f8fe5e
1 changed files with 6 additions and 5 deletions
|
@ -605,6 +605,7 @@ bool proof_checker::check1_basic(proof* p, expr_ref_vector& side_conditions) {
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (expr* term2 : terms2) {
|
for (expr* term2 : terms2) {
|
||||||
found = term1 == term2;
|
found = term1 == term2;
|
||||||
|
if (found) break;
|
||||||
}
|
}
|
||||||
if (!found) {
|
if (!found) {
|
||||||
IF_VERBOSE(0, verbose_stream() << "Premise not found:" << mk_pp(term1, m) << "\n";);
|
IF_VERBOSE(0, verbose_stream() << "Premise not found:" << mk_pp(term1, m) << "\n";);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue