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:
parent
ff723f15ff
commit
cbe7dd4a48
2 changed files with 5 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue