3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-26 18:15:37 +00:00

missing continue fixes unsound sat result from #5573

This commit is contained in:
Nikolaj Bjorner 2021-09-29 14:26:09 -07:00
parent ff723f15ff
commit cbe7dd4a48
2 changed files with 5 additions and 1 deletions

View file

@ -605,7 +605,9 @@ namespace q {
}
if (propagate(true))
return true;
return m_inst_queue.lazy_propagate();
if (m_inst_queue.lazy_propagate())
return true;
return false;
}
void ematch::collect_statistics(statistics& st) const {