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

make rewrite_eq boolean, and relax an ASSERT

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-01-29 14:18:52 -08:00 committed by Lev Nachmanson
parent ca7c128d3f
commit ed3df333b3

View file

@ -1457,8 +1457,8 @@ namespace lp {
} }
lia_move process_f() { lia_move process_f() {
unsigned empty_rows = 0; bool progress = true;
while (m_k2s.size() + empty_rows < m_e_matrix.row_count()) { while (progress) {
if (!normalize_by_gcd()) { if (!normalize_by_gcd()) {
if (m_report_branch) { if (m_report_branch) {
lra.stats().m_dio_cut_from_proofs++; lra.stats().m_dio_cut_from_proofs++;
@ -1469,7 +1469,7 @@ namespace lp {
} }
return lia_move::conflict; return lia_move::conflict;
} }
empty_rows = rewrite_eqs(); progress = rewrite_eqs();
if (m_conflict_index != UINT_MAX) { if (m_conflict_index != UINT_MAX) {
lra.stats().m_dio_rewrite_conflicts++; lra.stats().m_dio_rewrite_conflicts++;
return lia_move::conflict; return lia_move::conflict;
@ -1797,12 +1797,13 @@ namespace lp {
return true; return true;
} }
bool is_in_sync() const { bool is_in_sync() const {
unsigned n_local_columns = m_e_matrix.column_count(); for (unsigned j = 0; j < m_e_matrix.column_count(); j++) {
for (unsigned j = 0; j < n_local_columns; j++) {
unsigned external_j = m_var_register.local_to_external(j); unsigned external_j = m_var_register.local_to_external(j);
if (external_j == UINT_MAX) continue; if (external_j == UINT_MAX) continue;
if (external_j >= lra.column_count()) if (external_j >= lra.column_count() && m_e_matrix.m_columns[j].size()) {
// It is OK to have an empty column in m_e_matrix.
return false; return false;
}
} }
return columns_to_terms_is_correct(); return columns_to_terms_is_correct();
@ -2186,26 +2187,24 @@ namespace lp {
} }
// this is the step 6 or 7 of the algorithm // this is the step 6 or 7 of the algorithm
// returns the number of empty rows // returns true if an equlity was rewritten and false otherwise
unsigned rewrite_eqs() { bool rewrite_eqs() {
unsigned h = -1; unsigned h = -1;
unsigned empty_rows = 0;
for (unsigned ei=0; ei < m_e_matrix.row_count(); ei++) { for (unsigned ei=0; ei < m_e_matrix.row_count(); ei++) {
if (belongs_to_s(ei)) continue; if (belongs_to_s(ei)) continue;
if (m_e_matrix.m_rows[ei].size() == 0) { if (m_e_matrix.m_rows[ei].size() == 0) {
if (m_entries[ei].m_c.is_zero()) { if (m_entries[ei].m_c.is_zero()) {
empty_rows++;
continue; continue;
} else { } else {
m_conflict_index = ei; m_conflict_index = ei;
return empty_rows; return false;
} }
} }
h = ei; h = ei;
break; break;
} }
if (h == UINT_MAX) if (h == UINT_MAX)
return empty_rows; return false;
auto [ahk, k, k_sign] = find_minimal_abs_coeff(h); auto [ahk, k, k_sign] = find_minimal_abs_coeff(h);
TRACE("dioph_eq", tout << "eh:"; print_entry(h, tout); TRACE("dioph_eq", tout << "eh:"; print_entry(h, tout);
tout << "ahk:" << ahk << ", k:" << k << ", k_sign:" << k_sign tout << "ahk:" << ahk << ", k:" << k << ", k_sign:" << k_sign
@ -2218,7 +2217,7 @@ namespace lp {
} else { } else {
fresh_var_step(h, k, ahk * mpq(k_sign)); fresh_var_step(h, k, ahk * mpq(k_sign));
} }
return empty_rows; return true;
} }
public: public: