COIN-OR::LEMON - Graph Library

Changeset 2364:3a5e67bd42d2 in lemon-0.x for lemon/lp_cplex.h


Ignore:
Timestamp:
02/15/07 20:15:14 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3175
Message:

Lp row and col getter function
lp section reader and writer for lemon IO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_cplex.h

    r2361 r2364  
    6363    virtual void _getColName(int col,       std::string & name);
    6464    virtual void _setColName(int col, const std::string & name);
    65     virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
    66     virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
     65    virtual void _setRowCoeffs(int i, ConstRowIterator b, ConstRowIterator e);
     66    virtual void _getRowCoeffs(int i, RowIterator b);
     67    virtual void _setColCoeffs(int i, ConstColIterator b, ConstColIterator e);
     68    virtual void _getColCoeffs(int i, ColIterator b);
    6769    virtual void _setCoeff(int row, int col, Value value);
    6870    virtual Value _getCoeff(int row, int col);
Note: See TracChangeset for help on using the changeset viewer.