lemon/lp_skeleton.h
changeset 2364 3a5e67bd42d2
parent 2363 2aabce558574
child 2366 bfbdded3763a
equal deleted inserted replaced
11:6a663ff20e7e 12:0645d04be47b
    47     virtual void _getColName(int col, std::string & name);
    47     virtual void _getColName(int col, std::string & name);
    48     /// \e
    48     /// \e
    49     virtual void _setColName(int col, const std::string & name);
    49     virtual void _setColName(int col, const std::string & name);
    50 
    50 
    51     /// \e
    51     /// \e
    52     virtual void _setRowCoeffs(int i, LpRowIterator b, LpRowIterator e);
    52     virtual void _setRowCoeffs(int i, ConstRowIterator b, ConstRowIterator e);
    53     /// \e
    53     /// \e
    54     virtual void _setColCoeffs(int i, LpColIterator b, LpColIterator e);
    54     virtual void _getRowCoeffs(int i, RowIterator b);
       
    55     /// \e
       
    56     virtual void _setColCoeffs(int i, ConstColIterator b, ConstColIterator e);
       
    57     /// \e
       
    58     virtual void _getColCoeffs(int i, ColIterator b);
    55     
    59     
    56     /// Set one element of the coefficient matrix
    60     /// Set one element of the coefficient matrix
    57     virtual void _setCoeff(int row, int col, Value value);
    61     virtual void _setCoeff(int row, int col, Value value);
    58 
    62 
    59     /// Get one element of the coefficient matrix
    63     /// Get one element of the coefficient matrix