#include <F_SSOR_BiCgStab_2LS.hpp>
Inheritance diagram for F_SSOR_BiCgStab_2LS:
Purpose: Bicgstab(2) with SSOR preconditioning of a non-symmetric 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.
@ Copyrights: Bernard De Cuyper 2004, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
F_SSOR_BiCgStab_2LS (int maxIterations, double epsilon) | |
F_SSOR_BiCgStab_2LS (int maxIterations, double anOmega, double epsilon) | |
virtual | ~F_SSOR_BiCgStab_2LS () |
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 | |
double | alpha |
double | beta |
double | gamma |
double | rho0 |
double | rho1 |
double | omega1 |
double | omega2 |
double | omega3 |
FloatVector * | r |
FloatVector * | u |
FloatVector * | v |
FloatVector * | w |
FloatVector * | r0bar |
FloatVector * | s |
FloatVector * | t |
FloatVector * | uh |
FloatVector * | rh |
FloatVector * | vh |
FloatVector * | sh |
bool | fixedOmega |
double | omega |
AFProductSeqSMatrix * | C |