| 14 | { |
| 15 | |
| 16 | double Function::eval(const std::vector<double> &x) const |
| 17 | { |
| 18 | auto denseX = vectorToDenseVector(x); |
| 19 | |
| 20 | return eval(denseX); |
| 21 | } |
| 22 | |
| 23 | std::vector<double> Function::evalJacobian(const std::vector<double> &x) const |
| 24 | { |
nothing calls this directly
no test coverage detected