CGS.h File Reference
Detailed Description
Solves an unsymmetric linear system of equations using the Conjugate Gradient Squared method.Preconditioning is possible using a preconditioning class.
#include <iostream>
#include <iomanip>
#include "OFELI_Config.h"
#include "Vect.h"
#include "Precond.h"
#include "util.h"
#include "output.h"
Go to the source code of this file.
Namespaces | |
| namespace | OFELI |
Functions | |
| template<class T_, class M_, class P_> | |
| int | CGS (const M_ &A, const P_ &P, const Vect< T_ > &b, Vect< T_ > &x, int max_it, double &toler, int verbose) |
| Conjugate Gradient Squared solver function. | |