COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/soplex.cc

    r1336 r1270  
    3838
    3939  SoplexLp::SoplexLp(const SoplexLp& lp) {
    40     _rows = lp._rows;
    41     _cols = lp._cols;
     40    rows = lp.rows;
     41    cols = lp.cols;
    4242
    4343    soplex = new soplex::SoPlex;
     
    123123
    124124  void SoplexLp::_eraseColId(int i) {
    125     _cols.eraseIndex(i);
    126     _cols.relocateIndex(i, _cols.maxIndex());
     125    cols.eraseIndex(i);
     126    cols.relocateIndex(i, cols.maxIndex());
    127127  }
    128128  void SoplexLp::_eraseRowId(int i) {
    129     _rows.eraseIndex(i);
    130     _rows.relocateIndex(i, _rows.maxIndex());
     129    rows.eraseIndex(i);
     130    rows.relocateIndex(i, rows.maxIndex());
    131131  }
    132132
     
    433433    _row_names.clear();
    434434    _row_names_ref.clear();
    435     _cols.clear();
    436     _rows.clear();
     435    cols.clear();
     436    rows.clear();
    437437    _clear_temporals();
    438438  }
Note: See TracChangeset for help on using the changeset viewer.