|
| | Matrix ()=default |
| |
| template<typename MatrixType > |
| | Matrix (const MGLevelObject< MatrixType > &M) |
| |
| template<typename MatrixType > |
| void | initialize (const MGLevelObject< MatrixType > &M) |
| |
| void | reset () |
| |
| const LinearOperator< VectorType > & | operator[] (unsigned int level) const |
| |
| virtual void | vmult (const unsigned int level, VectorType &dst, const VectorType &src) const override |
| |
| virtual void | vmult_add (const unsigned int level, VectorType &dst, const VectorType &src) const override |
| |
| virtual void | Tvmult (const unsigned int level, VectorType &dst, const VectorType &src) const override |
| |
| virtual void | Tvmult_add (const unsigned int level, VectorType &dst, const VectorType &src) const override |
| |
| virtual unsigned int | get_minlevel () const override |
| |
| virtual unsigned int | get_maxlevel () const override |
| |
| std::size_t | memory_consumption () const |
| |
| virtual | ~MGMatrixBase () override=default |
| |
| virtual void | vmult (const unsigned int level, Vector< double > &dst, const Vector< double > &src) const=0 |
| |
| virtual void | vmult_add (const unsigned int level, Vector< double > &dst, const Vector< double > &src) const=0 |
| |
| virtual void | Tvmult (const unsigned int level, Vector< double > &dst, const Vector< double > &src) const=0 |
| |
| virtual void | Tvmult_add (const unsigned int level, Vector< double > &dst, const Vector< double > &src) const=0 |
| |
| virtual unsigned int | get_minlevel () const=0 |
| |
| virtual unsigned int | get_maxlevel () const=0 |
| |
| | Subscriptor () |
| |
| | Subscriptor (const Subscriptor &) |
| |
| | Subscriptor (Subscriptor &&) noexcept |
| |
| virtual | ~Subscriptor () |
| |
| Subscriptor & | operator= (const Subscriptor &) |
| |
| Subscriptor & | operator= (Subscriptor &&) noexcept |
| |
| void | subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| |
| void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| |
| unsigned int | n_subscriptions () const |
| |
| template<typename StreamType > |
| void | list_subscribers (StreamType &stream) const |
| |
| void | list_subscribers () const |
| |
| template<class Archive > |
| void | serialize (Archive &ar, const unsigned int version) |
| |
template<typename VectorType = Vector<double>>
class mg::Matrix< VectorType >
Multilevel matrix. This matrix stores an MGLevelObject of LinearOperator objects. It implements the interface defined in MGMatrixBase, so that it can be used as a matrix in Multigrid.
- Author
- Guido Kanschat
- Date
- 2002, 2010
Definition at line 47 of file mg_matrix.h.