diff -r 8b18b6fed090 -r 18fc834761d9 lemon/lp_skeleton.cc --- a/lemon/lp_skeleton.cc Mon Dec 04 15:00:24 2006 +0000 +++ b/lemon/lp_skeleton.cc Mon Dec 04 16:48:13 2006 +0000 @@ -68,6 +68,11 @@ { } + LpSkeleton::Value LpSkeleton::_getCoeff(int, int) + { + return 0; + } + void LpSkeleton::_setColLowerBound(int, Value) { @@ -93,6 +98,10 @@ { } + LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){ + return 0; + } + void LpSkeleton::_setMax() { } @@ -101,6 +110,12 @@ { } + bool LpSkeleton::_isMax() + { + return true; + } + + void LpSkeleton::_clearObj() { }