ConvergenceCriterion Enumeration

Enumerates possible values for the ConvergenceCriterion property of classes that inherit from the ConvergenceTest<T> and ManagedIterativeAlgorithm<T, TError, TReport> classes.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum ConvergenceCriterion

Members

WithinAbsoluteTolerance0 The estimated error should be less than the absolute tolerance.
WithinRelativeTolerance1 The estimated error should be less than the relative tolerance times the magnitude of the result.
WithinAnyTolerance2 The estimated error should be less than the larger of the absolute tolerance and the relative tolerance times the magnitude of the result.
WithinCombinedTolerance3 The estimated error should be less than the sum of the absolute tolerance and the relative tolerance times the magnitude of the result.
NumberOfIterations4 Convergence should be expected at the specified number of iterations. The estimated error is ignored.

See Also