From 44fd0e48a858ca71320c860bb9131c96487f6cdf Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Tue, 1 Oct 2024 10:34:17 -0700 Subject: [PATCH] fixes in dio Signed-off-by: Lev Nachmanson --- src/math/lp/dioph_eq.cpp | 35 ++++++++++++++++++++++++----------- src/math/lp/lar_solver.cpp | 6 +++--- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/src/math/lp/dioph_eq.cpp b/src/math/lp/dioph_eq.cpp index 6d0afede6..1fedb4221 100644 --- a/src/math/lp/dioph_eq.cpp +++ b/src/math/lp/dioph_eq.cpp @@ -325,11 +325,11 @@ namespace lp { lia_move tighten_with_S() { - // following the pattern of int_cube + // Following the pattern of int_cube, but do not push/pop the state. Instead, we keep the new bounds. int change = 0; for (unsigned j = 0; j < lra.column_count(); j++) { if (!lra.column_has_term(j) || lra.column_is_free(j) || - lra.column_is_fixed(j) || !lia.column_is_int(j)) continue; + lra.column_is_fixed(j) || !lia.column_is_int(j)) continue; if (tighten_bounds_for_column(j)) { change++; } @@ -379,7 +379,6 @@ namespace lp { return false; } - return tighten_bounds_for_term(t, g, j, dep); } void handle_constant_term(term_o& t, unsigned j, u_dependency* dep) { @@ -397,8 +396,8 @@ namespace lp { for (const auto& p: lra.flatten(b_dep)) { m_infeas_explanation.push_back(p); } + return; } - return; } if (lra.has_lower_bound(j, b_dep, rs, is_strict)) { if (t.c() < rs || is_strict && t.c() == rs) { @@ -516,23 +515,37 @@ namespace lp { } std::tuple find_minimal_abs_coeff(const term_o& eh) const { - bool first = true; - mpq ahk; - unsigned k; - int k_sign; + bool first = true, first_fresh = true; + mpq ahk, ahk_fresh; + unsigned k, k_fresh; + int k_sign, k_sign_fresh; mpq t; for (const auto& p : eh) { t = abs(p.coeff()); - if (first || t < ahk) { + if (first_fresh || t < ahk_fresh) { + ahk_fresh = t; + k_sign_fresh = p.coeff().is_pos() ? 1 : -1; + k_fresh = p.j(); + first_fresh = false; + } else if (first || t < ahk) { ahk = t; k_sign = p.coeff().is_pos() ? 1 : -1; k = p.j(); + first = false; if (ahk.is_one()) break; - first = false; + } } - return std::make_tuple(ahk, k, k_sign); + if (first_fresh) // did not find any fresh variables + return std::make_tuple(ahk, k, k_sign); + if (first) // only fresh vars + return std::make_tuple(ahk_fresh, k_fresh, k_sign_fresh); + SASSERT(!first && !first_fresh); + if (ahk <= ahk_fresh) { + return std::make_tuple(ahk, k, k_sign); + } + return std::make_tuple(ahk_fresh, k_fresh, k_sign_fresh); } term_o get_term_to_subst(const term_o& eh, unsigned k, int k_sign) { diff --git a/src/math/lp/lar_solver.cpp b/src/math/lp/lar_solver.cpp index f0f24a6c7..5d7d7e6d8 100644 --- a/src/math/lp/lar_solver.cpp +++ b/src/math/lp/lar_solver.cpp @@ -1061,15 +1061,15 @@ namespace lp { return ret; } - bool lar_solver::has_lower_bound(lpvar var, u_dependency*& ci, mpq& value, bool& is_strict) const { + bool lar_solver::has_lower_bound(lpvar var, u_dependency*& dep, mpq& value, bool& is_strict) const { if (var >= m_columns.size()) { // TBD: bounds on terms could also be used, caller may have to track these. return false; } const column& ul = m_columns[var]; - ci = ul.lower_bound_witness(); - if (ci != nullptr) { + dep = ul.lower_bound_witness(); + if (dep != nullptr) { auto& p = m_mpq_lar_core_solver.m_r_lower_bounds()[var]; value = p.x; is_strict = p.y.is_pos();