#include <F_ICholeskyCgLS.hpp>
Inheritance diagram for F_ICholeskyCgLS:
Purpose: Abstrac of 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_ICholeskyCgLS (int maxIterations, double epsilon=1.0e-4) | |
virtual | ~F_ICholeskyCgLS () |
virtual FloatVector * | solve (AFloatMatrix *m, FloatVector *b, bool factorisation, FloatVector *dest) |
Protected Methods | |
virtual void | factorise (AFloatMatrix *A) |
virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0) |
Private Attributes | |
double | alpha |
double | beta |
FloatSMatrix * | L |
FloatVector * | y |
FloatVector * | r |
FloatVector * | p |
FloatVector * | ap |