src/lemon/lp_skeleton.cc
changeset 1362 b4330c52caeb
parent 1359 1581f961cfaa
child 1364 ee5959aa4410
     1.1 --- a/src/lemon/lp_skeleton.cc	Fri Apr 15 20:46:18 2005 +0000
     1.2 +++ b/src/lemon/lp_skeleton.cc	Fri Apr 15 21:15:30 2005 +0000
     1.3 @@ -31,37 +31,37 @@
     1.4      return ++row_num;
     1.5    }
     1.6    
     1.7 -  void LpSkeleton::_setRowCoeffs(int i, 
     1.8 -					       int length,
     1.9 -					       int  const * indices, 
    1.10 -					       Value  const * values )
    1.11 +  void LpSkeleton::_setRowCoeffs(int, 
    1.12 +				 int,
    1.13 +				 int  const *, 
    1.14 +				 Value  const *)
    1.15    {
    1.16    }
    1.17    
    1.18 -  void LpSkeleton::_setColCoeffs(int i, 
    1.19 -					       int length,
    1.20 -					       int  const * indices, 
    1.21 -					       Value  const * values)
    1.22 +  void LpSkeleton::_setColCoeffs(int, 
    1.23 +				 int,
    1.24 +				 int  const *, 
    1.25 +				 Value  const *)
    1.26    {
    1.27    }
    1.28    
    1.29 -  void LpSkeleton::_setColLowerBound(int i, Value value)
    1.30 +  void LpSkeleton::_setColLowerBound(int, Value)
    1.31    {
    1.32    }
    1.33    
    1.34 -  void LpSkeleton::_setColUpperBound(int i, Value value)
    1.35 +  void LpSkeleton::_setColUpperBound(int, Value)
    1.36    {
    1.37    }
    1.38    
    1.39 -  void LpSkeleton::_setRowLowerBound(int i, Value value)
    1.40 +  void LpSkeleton::_setRowLowerBound(int, Value)
    1.41    {
    1.42    }
    1.43    
    1.44 -  void LpSkeleton::_setRowUpperBound(int i, Value value)
    1.45 +  void LpSkeleton::_setRowUpperBound(int, Value)
    1.46    {
    1.47    }
    1.48    
    1.49 -  void LpSkeleton::_setObjCoeff(int i, Value obj_coef)
    1.50 +  void LpSkeleton::_setObjCoeff(int, Value)
    1.51    {
    1.52    }
    1.53  
    1.54 @@ -77,7 +77,7 @@
    1.55      return SOLVED;
    1.56    }
    1.57  
    1.58 -  LpSkeleton::Value LpSkeleton::_getPrimal(int i)
    1.59 +  LpSkeleton::Value LpSkeleton::_getPrimal(int)
    1.60    {
    1.61      return 0;
    1.62    }