AlgorithmStatus 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#
public enum AlgorithmStatus

Members

NoResult0 The algorithm has not been executed.
IterationLimitExceeded1 The maximum number of iterations was exceeded.
RoundOffError2 Round-off prevented the algorithm from achieving a result within the desired tolerance.
BadFunction3 A badly behaved function prevented the algorithm from achieving a result within the desired tolerance.
Divergent4 the algorithm diverges.
EvaluationLimitExceeded5 The maximum number of function evaluations was exceeded.
ConvergedToFalseSolution6 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.

See Also