MCPcopy Create free account
hub / github.com/Kitware/VTK / Initialize

Method Initialize

Common/Math/vtkInitialValueProblemSolver.cxx:66–77  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

64
65//------------------------------------------------------------------------------
66void vtkInitialValueProblemSolver::Initialize()
67{
68 if (!this->FunctionSet)
69 {
70 return;
71 }
72 delete[] this->Vals;
73 this->Vals = new double[this->FunctionSet->GetNumberOfIndependentVariables()];
74 delete[] this->Derivs;
75 this->Derivs = new double[this->FunctionSet->GetNumberOfFunctions()];
76 this->Initialized = 1;
77}
78VTK_ABI_NAMESPACE_END

Callers 1

SetFunctionSetMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected