| SorMethodFRelaxationFactor Property |
Gets or sets the relaxation factor.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public float RelaxationFactor { get; set; }
Public Property RelaxationFactor As Single
Get
Set
public:
property float RelaxationFactor {
float get ();
void set (float value);
}
member RelaxationFactor : float32 with get, set
Property Value
Type:
SingleThe relaxation factor. The default value is
1.
Remarks
When this value is between 0 and 1 the method is termed under-relaxation, and when this
value is greater than 1 the method is termed over relaxation. If this value is 1, the SOR
method is simply the Gauss-Seidel method.
See Also