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

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

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

Members

MemberDescription
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.

See Also