diff -r 39b6e65574c6 -r 0759d974de81 lemon/soplex.cc --- a/lemon/soplex.cc Thu Apr 02 22:34:03 2015 +0200 +++ b/lemon/soplex.cc Sun Jan 05 22:24:56 2014 +0100 @@ -37,8 +37,8 @@ } SoplexLp::SoplexLp(const SoplexLp& lp) { - rows = lp.rows; - cols = lp.cols; + _rows = lp._rows; + _cols = lp._cols; soplex = new soplex::SoPlex; (*static_cast(soplex)) = *(lp.soplex); @@ -122,12 +122,12 @@ } void SoplexLp::_eraseColId(int i) { - cols.eraseIndex(i); - cols.relocateIndex(i, cols.maxIndex()); + _cols.eraseIndex(i); + _cols.relocateIndex(i, _cols.maxIndex()); } void SoplexLp::_eraseRowId(int i) { - rows.eraseIndex(i); - rows.relocateIndex(i, rows.maxIndex()); + _rows.eraseIndex(i); + _rows.relocateIndex(i, _rows.maxIndex()); } void SoplexLp::_getColName(int c, std::string &name) const { @@ -432,8 +432,8 @@ _col_names_ref.clear(); _row_names.clear(); _row_names_ref.clear(); - cols.clear(); - rows.clear(); + _cols.clear(); + _rows.clear(); _clear_temporals(); }