3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Revert "reject rows with columns with big numbers for lp bound propagation"

This reverts commit c0b55d1435.
This commit is contained in:
Lev Nachmanson 2023-09-21 16:30:43 -07:00
parent c0b55d1435
commit 576309a16f

View file

@ -135,15 +135,9 @@ namespace lp {
bool lar_solver::row_has_a_big_num(unsigned i) const {
for (const auto& c : A_r().m_rows[i]) {
for (const auto& c : A_r().m_rows[i])
if (c.coeff().is_big())
return true;
if (column_has_lower_bound(c.var())&& get_lower_bound(c.var()).x.is_big())
return true;
if (column_has_upper_bound(c.var())&& get_upper_bound(c.var()).x.is_big())
return true;
}
return false;
}