3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

restore the scheme of m_columns_with_changed_bounds

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2023-10-04 11:06:24 -07:00
parent a88aa7ffa5
commit edd1761ff3
8 changed files with 47 additions and 34 deletions

View file

@ -2161,7 +2161,7 @@ public:
m_nla->propagate();
add_lemmas();
add_equalities();
propagate_bounds_with_lp_solver();
lp().collect_more_rows_for_lp_propagation();
}
}
@ -2212,10 +2212,6 @@ public:
}
void propagate_bounds_with_lp_solver() {
if (!lp().current_x_is_feasible()) {
lp().clear_columns_with_changed_bounds();
return;
}
m_bp.init();
lp().propagate_bounds_for_touched_rows(m_bp);