1.1 --- a/lemon/cplex.cc Thu Apr 02 22:34:03 2015 +0200
1.2 +++ b/lemon/cplex.cc Sun Jan 05 22:24:56 2014 +0100
1.3 @@ -87,8 +87,8 @@
1.4 : LpBase() {
1.5 int status;
1.6 _prob = CPXcloneprob(cplexEnv(), cplex._prob, &status);
1.7 - rows = cplex.rows;
1.8 - cols = cplex.cols;
1.9 + _rows = cplex._rows;
1.10 + _cols = cplex._cols;
1.11 messageLevel(MESSAGE_NOTHING);
1.12 }
1.13
1.14 @@ -158,12 +158,12 @@
1.15 }
1.16
1.17 void CplexBase::_eraseColId(int i) {
1.18 - cols.eraseIndex(i);
1.19 - cols.shiftIndices(i);
1.20 + _cols.eraseIndex(i);
1.21 + _cols.shiftIndices(i);
1.22 }
1.23 void CplexBase::_eraseRowId(int i) {
1.24 - rows.eraseIndex(i);
1.25 - rows.shiftIndices(i);
1.26 + _rows.eraseIndex(i);
1.27 + _rows.shiftIndices(i);
1.28 }
1.29
1.30 void CplexBase::_getColName(int col, std::string &name) const {