Algorithm Status Enumeration
Enumerates the possible result codes for classes that
support the IterativeAlgorithm<T> interface.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
public enum AlgorithmStatus
Members
NoResult | 0 | The algorithm has not been executed. |
IterationLimitExceeded | 1 | The maximum number of iterations was exceeded. |
RoundOffError | 2 | Round-off prevented the algorithm from achieving a result within the desired tolerance. |
BadFunction | 3 | A badly behaved function prevented the algorithm from achieving a result within the desired tolerance. |
Divergent | 4 | the algorithm diverges. |
EvaluationLimitExceeded | 5 | The maximum number of function evaluations was exceeded. |
ConvergedToFalseSolution | 6 | The algorithm converged, but the result is not a solution of the problem. |
Converged | -1 | The algorithm has converged. |
Busy | -2 | The algorithm has not yet ended. |