COIN-OR::LEMON - Graph Library

Changeset 2312:07e46cbb7d85 in lemon-0.x for lemon/lp_skeleton.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_skeleton.h

    r1956 r2312  
    4444    virtual void _eraseRow(int i);
    4545    /// \e
    46     virtual void _getColName(int col,       std::string & name);
     46    virtual void _getColName(int col, std::string & name);
    4747    /// \e
    4848    virtual void _setColName(int col, const std::string & name);
    4949
    5050    /// \e
    51 
    52     /// \warning Arrays are indexed from 1 (datum at index 0 is ignored)
    53     ///
    54     virtual void _setRowCoeffs(int i,
    55                                int length,
    56                                int  const * indices,
    57                                Value  const * values );
     51    virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
    5852    /// \e
    59 
    60     /// \warning Arrays are indexed from 1 (datum at index 0 is ignored)
    61     ///
    62     virtual void _setColCoeffs(int i,
    63                                int length,
    64                                int  const * indices,
    65                                Value  const * values );
     53    virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
    6654   
    6755    /// Set one element of the coefficient matrix
Note: See TracChangeset for help on using the changeset viewer.