| 21 | } |
| 22 | |
| 23 | std::vector<double> Function::evalJacobian(const std::vector<double> &x) const |
| 24 | { |
| 25 | auto denseX = vectorToDenseVector(x); |
| 26 | |
| 27 | return denseVectorToVector(evalJacobian(denseX)); |
| 28 | } |
| 29 | |
| 30 | std::vector<std::vector<double>> Function::evalHessian(const std::vector<double> &x) const |
| 31 | { |
nothing calls this directly
no test coverage detected