(Obsolete.) Enumerates the possible result codes for classes that
support the IterativeAlgorithm interface.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration AlgorithmStatus |
| C# |
|---|
public enum AlgorithmStatus |
| C++ |
|---|
public enum class AlgorithmStatus |
Members
| Member | Description |
|---|---|
| NoResult |
The algorithm has not been executed.
|
| Busy |
The algorithm has not yet ended.
|
| Converged |
The algorithm has converged.
|
| ConvergedToFalseSolution |
The algorithm converged, but the result is not a solution of the problem.
|
| IterationLimitExceeded |
The maximum number of iterations was exceeded.
|
| EvaluationLimitExceeded |
The maximum number of function evaluations was exceeded.
|
| RoundOffError |
Round-off prevented the algorithm from achieving
a result within the desired tolerance.
|
| BadFunction |
A badly behaved function prevented the algorithm
from achieving a result within the desired tolerance.
|
| Divergent |
the algorithm diverges.
|
Remarks
This type has been deprecated. Use the AlgorithmStatus type instead.