mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
Merge pull request #1738 from agurfinkel/deep_space
Fix bug in proof checking
This commit is contained in:
commit
290302dca8
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;
|
||||
for (expr* term2 : terms2) {
|
||||
found = term1 == term2;
|
||||
if (found) break;
|
||||
}
|
||||
if (!found) {
|
||||
IF_VERBOSE(0, verbose_stream() << "Premise not found:" << mk_pp(term1, m) << "\n";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue