------------------------------------------------------------------------------
| 17 | |
| 18 | //------------------------------------------------------------------------------ |
| 19 | vtkInitialValueProblemSolver::~vtkInitialValueProblemSolver() |
| 20 | { |
| 21 | this->SetFunctionSet(nullptr); |
| 22 | delete[] this->Vals; |
| 23 | this->Vals = nullptr; |
| 24 | delete[] this->Derivs; |
| 25 | this->Derivs = nullptr; |
| 26 | this->Initialized = 0; |
| 27 | } |
| 28 | |
| 29 | //------------------------------------------------------------------------------ |
| 30 | void vtkInitialValueProblemSolver::SetFunctionSet(vtkFunctionSet* fset) |
nothing calls this directly
no test coverage detected