COIN-OR::LEMON - Graph Library

Changeset 2312:07e46cbb7d85 in lemon-0.x for lemon/lp_glpk.h


Ignore:
Timestamp:
11/29/06 16:01:13 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3088
Message:

modified _setColCoeff and _setRowCoeff parameters
const simplify() for expressions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_glpk.h

    r2144 r2312  
    5757    virtual void _getColName(int col,       std::string & name);
    5858    virtual void _setColName(int col, const std::string & name);
    59     virtual void _setRowCoeffs(int i,
    60                                int length,
    61                                const int   * indices,
    62                                const Value   * values );
    63     virtual void _setColCoeffs(int i,
    64                                int length,
    65                                const int   * indices,
    66                                const Value   * values);
     59    virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
     60    virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
    6761    virtual void _setCoeff(int row, int col, Value value);
    6862    virtual void _setColLowerBound(int i, Value value);
Note: See TracChangeset for help on using the changeset viewer.