lemon/lp_skeleton.cc
changeset 2324 18fc834761d9
parent 2312 07e46cbb7d85
child 2326 af8c695372be
     1.1 --- a/lemon/lp_skeleton.cc	Mon Dec 04 15:00:24 2006 +0000
     1.2 +++ b/lemon/lp_skeleton.cc	Mon Dec 04 16:48:13 2006 +0000
     1.3 @@ -68,6 +68,11 @@
     1.4    {
     1.5    }
     1.6  
     1.7 +  LpSkeleton::Value LpSkeleton::_getCoeff(int, int)
     1.8 +  {
     1.9 +    return 0;
    1.10 +  }
    1.11 +
    1.12  
    1.13    void LpSkeleton::_setColLowerBound(int, Value)
    1.14    {
    1.15 @@ -93,6 +98,10 @@
    1.16    {
    1.17    }
    1.18  
    1.19 +  LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){
    1.20 +    return 0;
    1.21 +  }
    1.22 +
    1.23    void LpSkeleton::_setMax()
    1.24    {
    1.25    }
    1.26 @@ -101,6 +110,12 @@
    1.27    {
    1.28    }
    1.29  
    1.30 +  bool LpSkeleton::_isMax()
    1.31 +  {
    1.32 +    return true;
    1.33 +  }
    1.34 +
    1.35 +
    1.36    void LpSkeleton::_clearObj()
    1.37    {
    1.38    }