#include <F_ILU0_BiCgStab_LS.hpp>
Inheritance diagram for F_ILU0_BiCgStab_LS:
Purpose: Bicgstab with IncompleteLU0 preconditioning of a nonsymmetric nxn Linear Solver Used to solve a set of linearized differencial equations,.... Some restoration are of the style: A * iNew = iOld iNew could be X, and iOld could be b. Paper: ILU0 preconditioning: --------------------- "ILU0 Preconditioning of Improved Actions.", N. Eicker & all, Research Center Julich, Report 1997, Germany "An approximation to the ILU0 preconditioner.", W.D. Turner, J.E. Flaherty, January 1998.
@ Copyrights: Bernard De Cuyper 2004, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
F_ILU0_BiCgStab_LS (int maxIterations, double epsilon) | |
virtual | ~F_ILU0_BiCgStab_LS () |
virtual FloatVector * | solve (AFloatMatrix *m, FloatVector *b, FloatVector *dest) |
Protected Methods | |
virtual AFProductSeqSMatrix * | factorize (AFSymMatrix *A) |
virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0) |
Private Attributes | |
AFProductSeqSMatrix * | C |
double | alpha |
double | beta |
double | gamma |
double | rho |
FloatVector * | r |
FloatVector * | p |
FloatVector * | ap |
FloatVector * | rbar0 |
FloatVector * | s |
FloatVector * | t |
FloatVector * | ph |
FloatVector * | z |