equal
deleted
inserted
replaced
63 |
63 |
64 void LpSolverSkeleton::_setObjCoeff(int i, Value obj_coef) |
64 void LpSolverSkeleton::_setObjCoeff(int i, Value obj_coef) |
65 { |
65 { |
66 } |
66 } |
67 |
67 |
68 LpSolverSkeleton::SolutionStatus LpSolverSkeleton::_solve() |
68 LpSolverSkeleton::SolveExitStatus LpSolverSkeleton::_solve() |
69 { |
69 { |
70 return SOLVED; |
70 return SOLVED; |
71 } |
71 } |
72 |
72 |
73 LpSolverSkeleton::Value LpSolverSkeleton::_getPrimal(int i) |
73 LpSolverSkeleton::Value LpSolverSkeleton::_getPrimal(int i) |
74 { |
74 { |
75 return 0; |
75 return 0; |
76 } |
76 } |
77 |
77 |
78 LpSolverSkeleton::SolutionType LpSolverSkeleton::_getPrimalType() |
78 LpSolverSkeleton::SolutionStatus LpSolverSkeleton::_getPrimalType() |
79 { |
79 { |
80 return OPTIMAL; |
80 return OPTIMAL; |
81 } |
81 } |
82 |
82 |
83 } //namespace lemon |
83 } //namespace lemon |