GeneralizedMinimalResidualSolver<T>.IterationsBetweenRestarts Property

Gets or sets the number of minor iterations in each major iteration.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.IterativeSolvers
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public int IterationsBetweenRestarts { get; set; }

Property Value

Int32

Remarks

The memory requirements of the GMRES method are proportional to the number of iterations. To limit memory use, the method is restarted. This property specifies after how many iterations the algorithm is restarted. The default value is 30.

See Also