mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
use CASSERT instead of lp_assert for static_matrix
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
181bb60e36
commit
0ee68220e1
|
@ -1373,7 +1373,7 @@ void lar_solver::remove_last_row_and_column_from_tableau(unsigned j) {
|
|||
lp_assert(A_r().m_columns[j].live_size() == 0);
|
||||
A_r().m_rows.pop_back();
|
||||
A_r().m_columns.pop_back();
|
||||
lp_assert(A_r().is_correct());
|
||||
CASSERT("check_static_matrix", A_r().is_correct());
|
||||
slv.m_b.pop_back();
|
||||
}
|
||||
|
||||
|
|
|
@ -230,7 +230,7 @@ public:
|
|||
bool reduced_costs_are_correct_tableau() const {
|
||||
if (m_settings.simplex_strategy() == simplex_strategy_enum::tableau_rows)
|
||||
return true;
|
||||
lp_assert(m_A.is_correct());
|
||||
CASSERT("check_static_matrix", m_A.is_correct());
|
||||
if (m_using_infeas_costs) {
|
||||
if (infeasibility_costs_are_correct() == false) {
|
||||
return false;
|
||||
|
|
|
@ -616,7 +616,7 @@ divide_row_by_pivot(unsigned pivot_row, unsigned pivot_col) {
|
|||
}
|
||||
}
|
||||
coeff = one_of_type<T>();
|
||||
lp_assert(m_A.is_correct());
|
||||
CASSERT("check_static_matrix", m_A.is_correct());
|
||||
return true;
|
||||
}
|
||||
template <typename T, typename X> bool lp_core_solver_base<T, X>::
|
||||
|
@ -639,7 +639,7 @@ pivot_column_tableau(unsigned j, unsigned piv_row_index) {
|
|||
if (pivot_col_cell_index != 0)
|
||||
m_A.swap_with_head_cell(j, pivot_col_cell_index);
|
||||
|
||||
lp_assert(m_A.is_correct());
|
||||
CASSERT("check_static_matrix", m_A.is_correct());
|
||||
while (column.live_size() > 1) {
|
||||
auto & c = column.back();
|
||||
if (c.dead()) {
|
||||
|
@ -655,7 +655,7 @@ pivot_column_tableau(unsigned j, unsigned piv_row_index) {
|
|||
}
|
||||
m_A.compress_column_if_needed(j);
|
||||
lp_assert(column.live_size() == 1);
|
||||
lp_assert(m_A.is_correct());
|
||||
CASSERT("check_static_matrix", m_A.is_correct());
|
||||
|
||||
if (m_settings.simplex_strategy() == simplex_strategy_enum::tableau_costs)
|
||||
pivot_to_reduced_costs_tableau(piv_row_index, j);
|
||||
|
|
|
@ -184,7 +184,7 @@ public:
|
|||
c.next_dead_index() = m_first_dead;
|
||||
m_first_dead = j;
|
||||
}
|
||||
lp_assert(is_correct());
|
||||
CASSERT("check_static_matrix", is_correct());
|
||||
}
|
||||
|
||||
bool is_correct() const {
|
||||
|
@ -264,7 +264,7 @@ public:
|
|||
c.next_dead_index() = m_first_dead;
|
||||
m_first_dead = j;
|
||||
}
|
||||
lp_assert(is_correct());
|
||||
CASSERT("check_static_matrix", is_correct());
|
||||
}
|
||||
|
||||
const column_cell& operator[] (unsigned i) const { return m_cells[i];}
|
||||
|
@ -330,7 +330,7 @@ public:
|
|||
}
|
||||
m_cells[0] = m_cells[i];
|
||||
m_cells[i] = head_copy;
|
||||
lp_assert(is_correct());
|
||||
CASSERT("check_static_matrix", is_correct());
|
||||
}
|
||||
|
||||
column_cell & add_cell(unsigned i, unsigned & index) {
|
||||
|
@ -580,7 +580,7 @@ public:
|
|||
m_columns.pop_back(); // delete the last column
|
||||
m_stack.pop();
|
||||
}
|
||||
lp_assert(is_correct());
|
||||
CASSERT("check_static_matrix", is_correct());
|
||||
}
|
||||
|
||||
void multiply_row(unsigned row, T const & alpha) {
|
||||
|
|
|
@ -293,8 +293,6 @@ template <typename T, typename X> T static_matrix<T, X>::get_row_balance(unsi
|
|||
}
|
||||
|
||||
template <typename T, typename X> bool static_matrix<T, X>::is_correct() const {
|
||||
if (m_rows.size() > 100 || m_columns.size() > 100)
|
||||
return true;
|
||||
for (unsigned i = 0; i < m_rows.size(); i++) {
|
||||
auto &r = m_rows[i];
|
||||
std::unordered_set<unsigned> s;
|
||||
|
|
Loading…
Reference in a new issue