Click or drag to resize
Accord.NET (logo)

IConvergenceT Interface

Common interface for convergence detection algorithms.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface IConvergence<T> : IConvergence
Request Example View Source

Type Parameters

T

The IConvergenceT type exposes the following members.

Properties
  NameDescription
Public propertyCurrentIteration
Gets the current iteration number.
(Inherited from IConvergence.)
Public propertyHasConverged
Gets or sets whether the algorithm has converged.
(Inherited from IConvergence.)
Public propertyIterations Obsolete.
Please use MaxIterations instead.
Public propertyMaxIterations
Gets or sets the maximum number of iterations performed by the iterative algorithm.
(Inherited from IConvergence.)
Public propertyNewValue
Gets or sets the watched value after the iteration.
Public propertyTolerance
Gets or sets the maximum relative change in the watched value after an iteration of the algorithm used to detect convergence.
(Inherited from IConvergence.)
Top
Methods
  NameDescription
Public methodClear
Resets this instance, reverting all iteration statistics statistics (number of iterations, last error) back to zero.
(Inherited from IConvergence.)
Top
See Also