ManagedIterativeAlgorithm<T, TError, TReport>.IterationsNeeded Property

Gets the number of iterations needed by the algorithm to reach the desired accuracy.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public int IterationsNeeded { get; }

Property Value

Int32
A number less than or equal to MaxIterations.

Remarks

This value is useful primarily when comparing different runs of the same algorithm. It may not be meaningful when comparing different algorithms because the work performed in an iteration of each algorithm may be completely different.

See Also