Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics Namespace


Extreme Optimization Mathematics Library for .NET

ConvergenceCriterion Enumeration

Enumerates possible values for the ConvergenceCriterion property of classes that inherit from the IterativeAlgorithm class.

[Visual Basic]
Public Enum ConvergenceCriterion
[C#]
public enum ConvergenceCriterion

Members

Member NameDescription
WithinAbsoluteTolerance The result should be within the tolerance specified by the AbsoluteTolerance property.
WithinRelativeTolerance The result should be within the tolerance specified by the RelativeTolerance property.
WithinAnyTolerance The result should be within either of the tolerances specified by the AbsoluteTolerance and RelativeTolerance properties.
NumberOfIterations Convergence should be expected at the specified number of iterations. The estimated error is ignored.

Requirements

Namespace: Extreme.Mathematics

Assembly: Extreme.Mathematics (in Extreme.Mathematics.dll)

See Also

Extreme.Mathematics Namespace | IterationResultCode | IterativeAlgorithm