equal
deleted
inserted
replaced
118 return 0; |
118 return 0; |
119 } |
119 } |
120 |
120 |
121 LpSkeleton::SolutionStatus LpSkeleton::_getPrimalStatus() |
121 LpSkeleton::SolutionStatus LpSkeleton::_getPrimalStatus() |
122 { |
122 { |
123 return OPTIMAL; |
123 return UNDEFINED; |
|
124 } |
|
125 |
|
126 LpSkeleton::SolutionStatus LpSkeleton::_getDualStatus() |
|
127 { |
|
128 return UNDEFINED; |
|
129 } |
|
130 |
|
131 LpSkeleton::ProblemTypes LpSkeleton::_getProblemType() |
|
132 { |
|
133 return UNKNOWN; |
124 } |
134 } |
125 |
135 |
126 } //namespace lemon |
136 } //namespace lemon |
127 |
137 |