![]() |
Reference documentation for deal.II version 8.1.0
|
#include <precondition.h>
Public Member Functions | |
| template<class VECTOR > | |
| void | vmult (VECTOR &, const VECTOR &) const |
| template<class VECTOR > | |
| void | Tvmult (VECTOR &, const VECTOR &) const |
| template<class VECTOR > | |
| void | step (VECTOR &x, const VECTOR &rhs) const |
| template<class VECTOR > | |
| void | Tstep (VECTOR &x, const VECTOR &rhs) const |
Public Member Functions inherited from PreconditionRelaxation< MATRIX > | |
| void | initialize (const MATRIX &A, const AdditionalData ¶meters=AdditionalData()) |
| void | clear () |
Public Member Functions inherited from Subscriptor | |
| Subscriptor () | |
| Subscriptor (const Subscriptor &) | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| void | subscribe (const char *identifier=0) const |
| void | unsubscribe (const char *identifier=0) const |
| unsigned int | n_subscriptions () const |
| void | list_subscribers () const |
| DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") | |
| DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) | |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Additional Inherited Members | |
Protected Attributes inherited from PreconditionRelaxation< MATRIX > | |
| SmartPointer< const MATRIX, PreconditionRelaxation< MATRIX > > | A |
| double | relaxation |
Jacobi preconditioner using matrix built-in function. The MATRIX class used is required to have a function precondition_Jacobi(VECTOR&, const VECTOR&, double)
Definition at line 432 of file precondition.h.
| void PreconditionJacobi< MATRIX >::vmult | ( | VECTOR & | , |
| const VECTOR & | |||
| ) | const |
Apply preconditioner.
| void PreconditionJacobi< MATRIX >::Tvmult | ( | VECTOR & | , |
| const VECTOR & | |||
| ) | const |
Apply transpose preconditioner. Since this is a symmetric preconditioner, this function is the same as vmult().
| void PreconditionJacobi< MATRIX >::step | ( | VECTOR & | x, |
| const VECTOR & | rhs | ||
| ) | const |
Perform one step of the preconditioned Richardson iteration.
| void PreconditionJacobi< MATRIX >::Tstep | ( | VECTOR & | x, |
| const VECTOR & | rhs | ||
| ) | const |
Perform one transposed step of the preconditioned Richardson iteration.
1.8.6