#include <F_CgLS_ShiftedLS.hpp>
Inheritance diagram for F_CgLS_ShiftedLS:
Purpose: Normal Equation 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.
Public Methods | |
F_CgLS_ShiftedLS (int maxIterations, double alambda=1.0, double adelta=0.01, double epsilon=1.0e-4) | |
virtual | ~F_CgLS_ShiftedLS () |
virtual FloatVector * | solve (AFloatMatrix *m, FloatVector *b, FloatVector *dest) |
Protected Methods | |
virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0) |
Private Attributes | |
double | alpha |
double | beta |
double | gamma |
FloatVector * | r |
FloatVector * | p |
FloatVector * | z |
FloatVector * | q |