mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
missing continue fixes unsound sat result from #5573
This commit is contained in:
parent
ff723f15ff
commit
cbe7dd4a48
|
@ -490,6 +490,8 @@ namespace euf {
|
|||
apply_solver(m_qsolver);
|
||||
if (num_nodes < m_egraph.num_nodes())
|
||||
return sat::check_result::CR_CONTINUE;
|
||||
if (cont)
|
||||
return sat::check_result::CR_CONTINUE;
|
||||
TRACE("after_search", s().display(tout););
|
||||
if (give_up)
|
||||
return sat::check_result::CR_GIVEUP;
|
||||
|
|
|
@ -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…
Reference in a new issue