Reference documentation for deal.II version 9.0.0
|
#include <deal.II/multigrid/mg_coarse.h>
Public Member Functions | |
MGCoarseGridIterativeSolver () | |
MGCoarseGridIterativeSolver (SolverType &solver, const MatrixType &matrix, const PreconditionerType &precondition) | |
void | initialize (SolverType &solver, const MatrixType &matrix, const PreconditionerType &precondition) |
void | clear () |
virtual void | operator() (const unsigned int level, VectorType &dst, const VectorType &src) const |
Public Member Functions inherited from MGCoarseGridBase< VectorType > | |
virtual | ~MGCoarseGridBase ()=default |
Public Member Functions inherited from Subscriptor | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
Subscriptor (Subscriptor &&) noexcept | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
Subscriptor & | operator= (Subscriptor &&) noexcept |
void | subscribe (const char *identifier=nullptr) const |
void | unsubscribe (const char *identifier=nullptr) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
SmartPointer< SolverType, MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType > > | solver |
SmartPointer< const MatrixType, MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType > > | matrix |
SmartPointer< const PreconditionerType, MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType > > | preconditioner |
Additional Inherited Members | |
Static Public Member Functions inherited from Subscriptor | |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
Coarse grid multigrid operator for an iterative solver.
This class provides a wrapper for a deal.II iterative solver with a given matrix and preconditioner as a coarse grid operator.
Definition at line 170 of file mg_coarse.h.
MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType >::MGCoarseGridIterativeSolver | ( | ) |
Default constructor.
MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType >::MGCoarseGridIterativeSolver | ( | SolverType & | solver, |
const MatrixType & | matrix, | ||
const PreconditionerType & | precondition | ||
) |
Constructor. Only a reference to these objects is stored, so their lifetime needs to exceed the usage in this class.
void MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType >::initialize | ( | SolverType & | solver, |
const MatrixType & | matrix, | ||
const PreconditionerType & | precondition | ||
) |
Initialize with new data, see the corresponding constructor for more details.
void MGCoarseGridIterativeSolver< VectorType, SolverType, MatrixType, PreconditionerType >::clear | ( | ) |
Clear all pointers.
|
virtual |
Implementation of the abstract function. Calls the solve method of the given solver with matrix, vectors, and preconditioner.
Implements MGCoarseGridBase< VectorType >.
|
private |
Reference to the solver.
Definition at line 214 of file mg_coarse.h.
|
private |
Reference to the matrix.
Definition at line 222 of file mg_coarse.h.
|
private |
Reference to the preconditioner.
Definition at line 230 of file mg_coarse.h.