Convergence Mode Enumeration
Represents the ways an IterativeAlgorithm<T>
can converge to its final value.
Definition
Namespace: Numerics.NET.Algorithms
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 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. |