src/lemon/lp_skeleton.cc
changeset 1362 b4330c52caeb
parent 1359 1581f961cfaa
child 1364 ee5959aa4410
equal deleted inserted replaced
1:e50bb6075406 2:3eff8c5ec13a
    29   int LpSkeleton::_addRow() 
    29   int LpSkeleton::_addRow() 
    30   {
    30   {
    31     return ++row_num;
    31     return ++row_num;
    32   }
    32   }
    33   
    33   
    34   void LpSkeleton::_setRowCoeffs(int i, 
    34   void LpSkeleton::_setRowCoeffs(int, 
    35 					       int length,
    35 				 int,
    36 					       int  const * indices, 
    36 				 int  const *, 
    37 					       Value  const * values )
    37 				 Value  const *)
    38   {
    38   {
    39   }
    39   }
    40   
    40   
    41   void LpSkeleton::_setColCoeffs(int i, 
    41   void LpSkeleton::_setColCoeffs(int, 
    42 					       int length,
    42 				 int,
    43 					       int  const * indices, 
    43 				 int  const *, 
    44 					       Value  const * values)
    44 				 Value  const *)
    45   {
    45   {
    46   }
    46   }
    47   
    47   
    48   void LpSkeleton::_setColLowerBound(int i, Value value)
    48   void LpSkeleton::_setColLowerBound(int, Value)
    49   {
    49   {
    50   }
    50   }
    51   
    51   
    52   void LpSkeleton::_setColUpperBound(int i, Value value)
    52   void LpSkeleton::_setColUpperBound(int, Value)
    53   {
    53   {
    54   }
    54   }
    55   
    55   
    56   void LpSkeleton::_setRowLowerBound(int i, Value value)
    56   void LpSkeleton::_setRowLowerBound(int, Value)
    57   {
    57   {
    58   }
    58   }
    59   
    59   
    60   void LpSkeleton::_setRowUpperBound(int i, Value value)
    60   void LpSkeleton::_setRowUpperBound(int, Value)
    61   {
    61   {
    62   }
    62   }
    63   
    63   
    64   void LpSkeleton::_setObjCoeff(int i, Value obj_coef)
    64   void LpSkeleton::_setObjCoeff(int, Value)
    65   {
    65   {
    66   }
    66   }
    67 
    67 
    68   void LpSkeleton::_setMax()
    68   void LpSkeleton::_setMax()
    69   {
    69   {
    75   LpSkeleton::SolveExitStatus LpSkeleton::_solve()
    75   LpSkeleton::SolveExitStatus LpSkeleton::_solve()
    76   {
    76   {
    77     return SOLVED;
    77     return SOLVED;
    78   }
    78   }
    79 
    79 
    80   LpSkeleton::Value LpSkeleton::_getPrimal(int i)
    80   LpSkeleton::Value LpSkeleton::_getPrimal(int)
    81   {
    81   {
    82     return 0;
    82     return 0;
    83   }
    83   }
    84   
    84   
    85   LpSkeleton::Value LpSkeleton::_getPrimalValue()
    85   LpSkeleton::Value LpSkeleton::_getPrimalValue()