3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

remove dead code

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-12 15:40:21 -07:00
parent 9a71ed87d9
commit c121c5d2d8
2 changed files with 0 additions and 15 deletions

View file

@ -728,19 +728,6 @@ bool lar_solver::use_tableau_costs() const {
return m_settings.simplex_strategy() == simplex_strategy_enum::tableau_costs;
}
void lar_solver::detect_rows_of_column_with_bound_change(unsigned j) {
if (m_mpq_lar_core_solver.m_r_heading[j] >= 0) { // it is a basic column
// just mark the row at touched and exit
m_rows_with_changed_bounds.insert(m_mpq_lar_core_solver.m_r_heading[j]);
return;
}
if (use_tableau())
detect_rows_of_bound_change_column_for_nbasic_column_tableau(j);
else
detect_rows_of_bound_change_column_for_nbasic_column(j);
}
void lar_solver::adjust_x_of_column(unsigned j) {
lp_assert(false);
}

View file

@ -392,8 +392,6 @@ public:
bool use_tableau_costs() const;
void detect_rows_of_column_with_bound_change(unsigned j);
void adjust_x_of_column(unsigned j);
bool row_is_correct(unsigned i) const;