#include <BISTAB_CG.hpp>
Inheritance diagram for BISTAB_CG:
Purpose: Define the Bi Stable Conjugate Gradient 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 & Eddy Fraiha 2002, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
BISTAB_CG (int asize, int iterMax, double eps=1e-4) | |
virtual | ~BISTAB_CG () |
virtual bool | iterate () |
virtual void | output () |
virtual void | output (FILE *file) |
Protected Attributes | |
double | alpha |
double | beta |
double | gamma |
RealVector * | r |
RealVector * | r |
RealVector * | p |
RealVector * | ap |
RealVector * | s |
RealVector * | as |
RTriDiagonalMatrix * | At |