mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
Reverted reusing can_propagate (#5966)
* Fixed registering expressions in push/pop * Reused existing function * Reverted reusing can_propagate
This commit is contained in:
parent
ac55e29a56
commit
b264e6c290
|
@ -133,7 +133,7 @@ final_check_status theory_user_propagator::final_check_eh() {
|
|||
}
|
||||
propagate();
|
||||
// check if it became inconsistent or something new was propagated/registered
|
||||
bool done = !can_propagate() && !ctx.inconsistent();
|
||||
bool done = (sz1 == m_prop.size()) && (sz2 == m_expr2var.size()) && !ctx.inconsistent();
|
||||
return done ? FC_DONE : FC_CONTINUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue