An iterative solver using the Successive Over Relaxation (SOR) method (double-precision).

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.7.0.0 (1.7.0.9486)

Syntax

C#
public class SorMethodD : IterativeLinearSystemSolverD
Visual Basic
Public Class SorMethodD _
	Inherits IterativeLinearSystemSolverD
Visual C++
public ref class SorMethodD : public IterativeLinearSystemSolverD

Remarks

See http://en.wikipedia.org/wiki/Successive_over-relaxation for an introduction to this method and for an explanation of the convergence criterion.

Inheritance Hierarchy

System..::..Object
  DigitalRune.Mathematics.Algebra..::..IterativeLinearSystemSolverD
    DigitalRune.Mathematics.Algebra..::..SorMethodD

See Also