Algorithm Status Enumeration
Enumerates the possible result codes for classes that
support the IterativeAlgorithm interface.
Definition
Namespace: Extreme.Mathematics
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 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. |