Convergence Criterion 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#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum ConvergenceCriterion
Members
WithinAbsoluteTolerance | 0 | The estimated error should be less than the absolute tolerance. |
WithinRelativeTolerance | 1 | The estimated error should be less than the relative tolerance times the magnitude of the result. |
WithinAnyTolerance | 2 | The estimated error should be less than the larger of the absolute tolerance and the relative tolerance times the magnitude of the result. |
WithinCombinedTolerance | 3 | The estimated error should be less than the sum of the absolute tolerance and the relative tolerance times the magnitude of the result. |
NumberOfIterations | 4 | Convergence should be expected at the specified number of iterations. The estimated error is ignored. |