From 5ebee24850135df18a56b970c15f9153d0a6e9e4 Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Sat, 8 Feb 2025 14:25:10 -1000 Subject: [PATCH] revert the term sorting Signed-off-by: Lev Nachmanson --- src/math/lp/dioph_eq.cpp | 42 +++++++++++++--------------------------- 1 file changed, 13 insertions(+), 29 deletions(-) diff --git a/src/math/lp/dioph_eq.cpp b/src/math/lp/dioph_eq.cpp index 2f5936c22..3e99b36da 100644 --- a/src/math/lp/dioph_eq.cpp +++ b/src/math/lp/dioph_eq.cpp @@ -1354,41 +1354,25 @@ namespace lp { } lia_move tighten_terms_with_S() { - // Copy changed terms to another vector for sorting - std_vector sorted_changed_terms; std_vector cleanup; + lia_move ret = lia_move::undef; for (unsigned j : m_changed_terms) { - if ( - j >= lra.column_count() || - !lra.column_has_term(j) || - lra.column_is_free(j) || + cleanup.push_back(j); + if (j >= lra.column_count()) continue; + if (!lra.column_has_term(j) || lra.column_is_free(j) || is_fixed(j) || !lia.column_is_int(j)) { - cleanup.push_back(j); - continue; - } - sorted_changed_terms.push_back(j); - } - // Sort by term_weight descending - std::sort(sorted_changed_terms.begin(), sorted_changed_terms.end(), - [this](unsigned j1, unsigned j2) { - return term_weight(lra.get_term(j1)) > term_weight(lra.get_term(j2) ); - }); + continue; + } - lia_move r = lia_move::undef; - // Process sorted terms - for (unsigned j : sorted_changed_terms) { - m_changed_terms.remove(j); - - - if (tighten_bounds_for_term_column(j)) { - r = lia_move::conflict; + if (tighten_bounds_for_term_column(j)) { + ret = lia_move::conflict; break; } } - for (unsigned j : cleanup) { + for (unsigned j: cleanup) { m_changed_terms.remove(j); } - return r; + return ret; } std::ostream& print_queue(std::queue q, std::ostream& out) { @@ -1999,8 +1983,8 @@ namespace lp { } } - unsigned find_markovich_number(unsigned k, unsigned h) { - return m_e_matrix.m_columns[k].size() * m_e_matrix.m_rows[h].size(); + unsigned markovich_number(unsigned k, unsigned h) { + return (unsigned) m_e_matrix.m_columns[k].size() * m_e_matrix.m_rows[h].size(); } std::tuple find_minimal_abs_coeff(unsigned ei) { @@ -2021,7 +2005,7 @@ namespace lp { } } - return std::make_tuple(ahk, k, k_sign, find_markovich_number(k, ei)); + return std::make_tuple(ahk, k, k_sign, markovich_number(k, ei)); }