VTK-m
2.2
|
An object returned from NewtonsMethod()
that contains the result and other information about the final state.
More...
#include <NewtonsMethod.h>
Public Attributes | |
bool | Valid |
True if Newton's method ran into a singularity. More... | |
bool | Converged |
True if Newton's method converted to below the convergence value. More... | |
vtkm::Vec< ScalarType, Size > | Solution |
The solution found by Newton's method. More... | |
An object returned from NewtonsMethod()
that contains the result and other information about the final state.
bool vtkm::NewtonsMethodResult< ScalarType, Size >::Converged |
True if Newton's method converted to below the convergence value.
vtkm::Vec<ScalarType, Size> vtkm::NewtonsMethodResult< ScalarType, Size >::Solution |
The solution found by Newton's method.
If Converged
is false, then this value is likely inaccurate. If Valid
is false, then this value is undefined.
bool vtkm::NewtonsMethodResult< ScalarType, Size >::Valid |
True if Newton's method ran into a singularity.