lemon/lp_skeleton.cc
changeset 2364 3a5e67bd42d2
parent 2328 b4931ae52069
child 2366 bfbdded3763a
     1.1 --- a/lemon/lp_skeleton.cc	Thu Feb 15 14:22:08 2007 +0000
     1.2 +++ b/lemon/lp_skeleton.cc	Thu Feb 15 19:15:14 2007 +0000
     1.3 @@ -58,10 +58,16 @@
     1.4    }
     1.5    
     1.6    
     1.7 -  void LpSkeleton::_setRowCoeffs(int, LpRowIterator, LpRowIterator) {
     1.8 +  void LpSkeleton::_setRowCoeffs(int, ConstRowIterator, ConstRowIterator) {
     1.9 +  }
    1.10 +
    1.11 +  void LpSkeleton::_getRowCoeffs(int, RowIterator) {
    1.12    }
    1.13    
    1.14 -  void LpSkeleton::_setColCoeffs(int, LpColIterator, LpColIterator) {
    1.15 +  void LpSkeleton::_setColCoeffs(int, ConstColIterator, ConstColIterator) {
    1.16 +  }
    1.17 +
    1.18 +  void LpSkeleton::_getColCoeffs(int, ColIterator) {
    1.19    }
    1.20  
    1.21    void LpSkeleton::_setCoeff(int, int, Value )