Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum ConvergenceCriterion
Public Enumeration ConvergenceCriterion
public enum class ConvergenceCriterion
type ConvergenceCriterion
| Member name | Value | Description |
---|
| 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.
|
Reference