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: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |