| 192 | } |
| 193 | |
| 194 | void HomogeneousEqualityConstrainedModel::postprocess_solution(Iterate& iterate) const { |
| 195 | // discard the slacks |
| 196 | iterate.number_variables = this->model.number_variables; |
| 197 | this->model.postprocess_solution(iterate); |
| 198 | } |
| 199 | |
| 200 | size_t HomogeneousEqualityConstrainedModel::number_jacobian_nonzeros() const { |
| 201 | return this->model.number_jacobian_nonzeros() + this->slacks.size(); |
nothing calls this directly
no outgoing calls
no test coverage detected