Iterative Algorithm.Convergence Criterion Property
Gets or sets a value specifying the criterion that is
to be used in the convergence test for the algorithm.
Definition
Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
One of the ConvergenceCriterion values.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public ConvergenceCriterion ConvergenceCriterion { get; set; }
Property Value
ConvergenceCriterionOne of the ConvergenceCriterion values.
Remarks
Root finding algorithms return an approximation to the actual value of a root. The desired accuracy of the approximation is specified by the ConvergenceCriterion property and either or both of AbsoluteTolerance and RelativeTolerance.
The possible values for this property are as follows:
Value | Description |
---|---|
WithinAbsoluteTolerance | The result should be within the tolerance specified by the AbsoluteTolerance property. |
WithinRelativeTolerance | The result should be within the tolerance specified by the RelativeTolerance property. |
WithinAnyTolerance | The result should be within either of the tolerances specified by the AbsoluteTolerance and RelativeTolerance properties. |
NumberOfIterations | Convergence should be expected at the specified number of iterations. The estimated error is ignored. |