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

debug new propagation scheme

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2023-10-03 16:25:49 -07:00
parent 00ba064cd3
commit a88aa7ffa5
4 changed files with 12 additions and 5 deletions

View file

@ -2212,6 +2212,10 @@ 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);