Enumeration for specifying the stop criterion.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public enum Criterion
Visual Basic (Declaration)
Public Enumeration Criterion
Visual C++
public enum class Criterion

Members

Member nameDescription
MaxIterationsExceeded
The maximum number of iterations was exceeded.
TrustRegionWithinTolerance
The area of the trust region was within tolerance.
FunctionValueWithinTolerance
The function value, f(x), was within tolerance.
JacobianWithinTolerance
The value of the Jacobian matrix, A, at x was within tolerance for all A[i,j].
TrialStepWithinTolerance
The size of the trial step was within tolerance.
ImprovementWithinTolerance
The magnitude of the improvement between steps was within tolerance.

See Also