TIterativeMethod Enumeration

Source: sparse.cs · Assembly: Dew.Math

public enum TIterativeMethod

The method for iterative solver.

Values

NameDescription
itmICCGSolve a symmetric positive definite linear system Ax=b using the incomplete Cholesky preconditioned conjugate gradient method.
itmILURSolve a general linear system Ax=b using the incomplete LU decomposition with iterative refinement.
itmJACSolve a general linear system Ax=b using Jacobi iteration.
itmLUBCSolve a linear system Ax=b using the BiConjugate gradient method with incomplete LU decomposition preconditioning.
itmLUCSSolve a linear system Ax=b using the BiConjugate Gradient method with incomplete LU decomposition pre conditioning.
itmLUGMRESThis routine uses the generalized minimum residual (GMRES) method with pre conditioning to solve non-symmetric linear systems of the form: A*x=b.
itmLUOMSolve a general linear system A*x=b using the preconditioned orthomin method.
itmSGSGauss-Seidel method iterative sparse Ax=b solver.
itmSLUCNSolve a general linear system Ax=b using the incomplete LU decomposition with the Conjugate Gradient method applied to the normal equations, viz., AA'y=b, x=A'y.