Convergence Mode Enumeration
Represents the ways an IterativeAlgorithm
can converge to its final value.
Definition
Namespace: Extreme.Mathematics.Algorithms
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 ConvergenceMode
Members
Interval | 0 | The algorithm produces a sequence of intervals of decreasing size. |
Point | 1 | The algorithm produces a sequence of values with error estimates. |
Custom | 2 | The method of convergence is determined by the inheriting class. |