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


 
Purpose:        Small iterative solver if eigenvalues are known
                        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:  "Templates for the Solution of Linear Systems: Building Blocks for Iterative Methods",
                R. Barrett, M. Berry, Tony F. Chan, J. Demmel, J. Donato, J. Dongarra, V. Eijkout, 
                R. Pozo, C. Romine, Henk Van der Vorst, All & Utrecht University, All & Netherland, 1994.
                www.netlib.org
                @ Copyrights: Bernard De Cuyper 2004, Eggs & Pictures. MIT/Open BSD copyright model.
| Public Methods | |
| F_ChebychevIteration (int maxIterations, double lMax, double lMin, double epsilon=1.0e-4) | |
| virtual | ~F_ChebychevIteration () | 
| virtual FloatVector * | solve (AFloatMatrix *m, FloatVector *b, FloatVector *dest) | 
| Protected Methods | |
| virtual FloatVector * | singleSolve (AFloatMatrix *A, FloatVector *b, FloatVector *x=0) | 
| Private Attributes | |
| double | lambdaMin | 
| double | lambdaMax | 
| double | c | 
| double | d | 
| double | alpha | 
| double | beta | 
| FloatVector * | r | 
| FloatVector * | p | 
| FloatVector * | ap | 
|  | 
