diff -r 04733359bac2 -r b4330c52caeb src/lemon/lp_skeleton.cc --- a/src/lemon/lp_skeleton.cc Fri Apr 15 20:46:18 2005 +0000 +++ b/src/lemon/lp_skeleton.cc Fri Apr 15 21:15:30 2005 +0000 @@ -31,37 +31,37 @@ return ++row_num; } - void LpSkeleton::_setRowCoeffs(int i, - int length, - int const * indices, - Value const * values ) + void LpSkeleton::_setRowCoeffs(int, + int, + int const *, + Value const *) { } - void LpSkeleton::_setColCoeffs(int i, - int length, - int const * indices, - Value const * values) + void LpSkeleton::_setColCoeffs(int, + int, + int const *, + Value const *) { } - void LpSkeleton::_setColLowerBound(int i, Value value) + void LpSkeleton::_setColLowerBound(int, Value) { } - void LpSkeleton::_setColUpperBound(int i, Value value) + void LpSkeleton::_setColUpperBound(int, Value) { } - void LpSkeleton::_setRowLowerBound(int i, Value value) + void LpSkeleton::_setRowLowerBound(int, Value) { } - void LpSkeleton::_setRowUpperBound(int i, Value value) + void LpSkeleton::_setRowUpperBound(int, Value) { } - void LpSkeleton::_setObjCoeff(int i, Value obj_coef) + void LpSkeleton::_setObjCoeff(int, Value) { } @@ -77,7 +77,7 @@ return SOLVED; } - LpSkeleton::Value LpSkeleton::_getPrimal(int i) + LpSkeleton::Value LpSkeleton::_getPrimal(int) { return 0; }