* Evaluate functions at x_j. * x and f have to point to valid double arrays of appropriate * sizes obtained with GetNumberOfFunctions() and * GetNumberOfIndependentVariables. * If you inherit this class, make sure to reimplement at least one of the two * FunctionValues signatures. */
| 36 | * FunctionValues signatures. |
| 37 | */ |
| 38 | virtual int FunctionValues(double* x, double* f) { return this->FunctionValues(x, f, nullptr); } |
| 39 | virtual int FunctionValues(double* x, double* f, void* vtkNotUsed(userData)) |
| 40 | { |
| 41 | return this->FunctionValues(x, f); |
nothing calls this directly
no test coverage detected