diff -r 39b6e65574c6 -r 0759d974de81 lemon/cplex.cc --- a/lemon/cplex.cc Thu Apr 02 22:34:03 2015 +0200 +++ b/lemon/cplex.cc Sun Jan 05 22:24:56 2014 +0100 @@ -87,8 +87,8 @@ : LpBase() { int status; _prob = CPXcloneprob(cplexEnv(), cplex._prob, &status); - rows = cplex.rows; - cols = cplex.cols; + _rows = cplex._rows; + _cols = cplex._cols; messageLevel(MESSAGE_NOTHING); } @@ -158,12 +158,12 @@ } void CplexBase::_eraseColId(int i) { - cols.eraseIndex(i); - cols.shiftIndices(i); + _cols.eraseIndex(i); + _cols.shiftIndices(i); } void CplexBase::_eraseRowId(int i) { - rows.eraseIndex(i); - rows.shiftIndices(i); + _rows.eraseIndex(i); + _rows.shiftIndices(i); } void CplexBase::_getColName(int col, std::string &name) const {