Missing function _setRowBounds added to lp_skeleton.
authorathos
Mon, 25 Apr 2005 15:43:11 +0000
changeset 138958b298e50c20
parent 1388 50fc3487af8b
child 1390 9c8e464ed940
Missing function _setRowBounds added to lp_skeleton.
src/lemon/lp_skeleton.cc
src/lemon/lp_skeleton.h
     1.1 --- a/src/lemon/lp_skeleton.cc	Mon Apr 25 09:00:47 2005 +0000
     1.2 +++ b/src/lemon/lp_skeleton.cc	Mon Apr 25 15:43:11 2005 +0000
     1.3 @@ -72,6 +72,10 @@
     1.4    void LpSkeleton::_setRowUpperBound(int, Value)
     1.5    {
     1.6    }
     1.7 +
     1.8 +  void _setRowBounds(int, Value, Value)
     1.9 +  {
    1.10 +  }
    1.11    
    1.12    void LpSkeleton::_setObjCoeff(int, Value)
    1.13    {
     2.1 --- a/src/lemon/lp_skeleton.h	Mon Apr 25 09:00:47 2005 +0000
     2.2 +++ b/src/lemon/lp_skeleton.h	Mon Apr 25 15:43:11 2005 +0000
     2.3 @@ -74,6 +74,10 @@
     2.4      virtual void _setRowLowerBound(int i, Value value);
     2.5      /// \e
     2.6  
     2.7 +    /// \e
     2.8 +    virtual void _setRowBounds(int i, Value lb, Value ub);
     2.9 +    /// \e
    2.10 +
    2.11      /// The upper bound of a linear expression (row) have to be given by an 
    2.12      /// extended number of type Value, i.e. a finite number of type 
    2.13      /// Value or \ref INF.