COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/glpk.cc

    r1336 r1270  
    3939    glp_copy_prob(lp, other.lp, GLP_ON);
    4040    glp_create_index(lp);
    41     _rows = other._rows;
    42     _cols = other._cols;
     41    rows = other.rows;
     42    cols = other.cols;
    4343    messageLevel(MESSAGE_NOTHING);
    4444  }
     
    109109
    110110  void GlpkBase::_eraseColId(int i) {
    111     _cols.eraseIndex(i);
    112     _cols.shiftIndices(i);
     111    cols.eraseIndex(i);
     112    cols.shiftIndices(i);
    113113  }
    114114
    115115  void GlpkBase::_eraseRowId(int i) {
    116     _rows.eraseIndex(i);
    117     _rows.shiftIndices(i);
     116    rows.eraseIndex(i);
     117    rows.shiftIndices(i);
    118118  }
    119119
Note: See TracChangeset for help on using the changeset viewer.