Click or drag to resize

ILU0Preconditioner Class

An incomplete, level 0, LU factorization preconditioner.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebra.Complex32.SolversILU0Preconditioner

Namespace: Altaxo.Calc.LinearAlgebra.Complex32.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public sealed class ILU0Preconditioner : IPreconditioner<Complex32>

The ILU0Preconditioner type exposes the following members.

Constructors
 NameDescription
Public methodILU0PreconditionerInitializes a new instance of the ILU0Preconditioner class
Top
Methods
 NameDescription
Public methodApproximate Approximates the solution to the matrix equation Ax = b.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodInitialize Initializes the preconditioner and loads the internal data structures.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
The ILU(0) algorithm was taken from:
Iterative methods for sparse linear systems
Yousef Saad
Algorithm is described in Chapter 10, section 10.3.2, page 275
See Also