This evaluates the error term and additionally computes the Jacobians.
| 105 | |
| 106 | // This evaluates the error term and additionally computes the Jacobians. |
| 107 | bool SonarError::Evaluate(double const* const* parameters, double* residuals, double** jacobians) const { |
| 108 | return EvaluateWithMinimalJacobians(parameters, residuals, jacobians, NULL); |
| 109 | } |
| 110 | |
| 111 | // This evaluates the error term and additionally computes |
| 112 | // the Jacobians in the minimal internal representation. |
nothing calls this directly
no outgoing calls
no test coverage detected