Enumerates possible values for the
ConvergenceCriterion property of classes
that inherit from the IterativeAlgorithm
class.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration ConvergenceCriterion |
| C# |
|---|
public enum ConvergenceCriterion |
| Visual C++ |
|---|
public enum class ConvergenceCriterion |
Members
| Member | Description |
|---|---|
| NumberOfIterations |
Convergence should be expected at the specified number of
iterations. The estimated error is ignored.
|
| WithinAbsoluteTolerance |
The result should be within the tolerance specified by
the AbsoluteTolerance
property.
|
| WithinAnyTolerance |
The result should be within either of the tolerances
specified by the
AbsoluteTolerance and
RelativeTolerance
properties.
|
| WithinRelativeTolerance |
The result should be within the tolerance specified by
the RelativeTolerance
property.
|