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.1.5
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public enum AlgorithmStatusMembers
| 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. |