lemon/clp.cc
changeset 1130 0759d974de81
parent 1092 dceba191c00d
child 1205 57abff252556
     1.1 --- a/lemon/clp.cc	Thu Apr 02 22:34:03 2015 +0200
     1.2 +++ b/lemon/clp.cc	Sun Jan 05 22:24:56 2014 +0100
     1.3 @@ -29,8 +29,8 @@
     1.4  
     1.5    ClpLp::ClpLp(const ClpLp& other) {
     1.6      _prob = new ClpSimplex(*other._prob);
     1.7 -    rows = other.rows;
     1.8 -    cols = other.cols;
     1.9 +    _rows = other._rows;
    1.10 +    _cols = other._cols;
    1.11      _init_temporals();
    1.12      messageLevel(MESSAGE_NOTHING);
    1.13    }
    1.14 @@ -103,13 +103,13 @@
    1.15    }
    1.16  
    1.17    void ClpLp::_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  
    1.24    void ClpLp::_eraseRowId(int i) {
    1.25 -    rows.eraseIndex(i);
    1.26 -    rows.shiftIndices(i);
    1.27 +    _rows.eraseIndex(i);
    1.28 +    _rows.shiftIndices(i);
    1.29    }
    1.30  
    1.31    void ClpLp::_getColName(int c, std::string& name) const {