3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

remove some lp_asserts

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-07-30 12:54:53 -07:00
parent 9cb713879e
commit 181bb60e36
4 changed files with 2 additions and 6 deletions

View file

@ -790,12 +790,10 @@ public:
void compress_row_if_needed(unsigned i) {
compress_cells(m_rows[i], m_columns);
lp_assert(is_correct());
}
void compress_column_if_needed(unsigned j) {
compress_cells(m_columns[j], m_rows);
lp_assert(is_correct());
}
ref_row operator[](unsigned i) const { return ref_row(*this, i);}