#include <F_IterativeLS.hpp>
Inheritance diagram for F_IterativeLS:


Purpose: Abstract of Iterative 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_IterativeLS (int maxIterations, double epsilon=1.0e-4) | |
| virtual | ~F_IterativeLS () |
| virtual FloatVector * | solve (AFloatMatrix *A, FloatVector *b, bool factorisation, FloatVector *dest) |
| virtual FloatVector * | solve (AFloatMatrix *A, FloatVector *b, FloatVector *dest) |
Protected Methods | |
| virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0)=0 |
Protected Attributes | |
| int | maxIter |
| double | eps |
| bool | converge |
![]() |
