Reference documentation for deal.II version 8.5.1
Public Types | Public Member Functions | List of all members
PointerMatrixBase< VectorType > Class Template Referenceabstract

#include <deal.II/lac/pointer_matrix.h>

Inheritance diagram for PointerMatrixBase< VectorType >:
[legend]

Public Types

typedef VectorType::value_type value_type
 

Public Member Functions

virtual ~PointerMatrixBase ()
 
virtual void clear ()=0
 
virtual void vmult (VectorType &dst, const VectorType &src) const =0
 
virtual void Tvmult (VectorType &dst, const VectorType &src) const =0
 
virtual void vmult_add (VectorType &dst, const VectorType &src) const =0
 
virtual void Tvmult_add (VectorType &dst, const VectorType &src) const =0
 
- Public Member Functions inherited from Subscriptor
 Subscriptor ()
 
 Subscriptor (const Subscriptor &)
 
 Subscriptor (Subscriptor &&)
 
virtual ~Subscriptor ()
 
Subscriptoroperator= (const Subscriptor &)
 
Subscriptoroperator= (Subscriptor &&)
 
void subscribe (const char *identifier=0) const
 
void unsubscribe (const char *identifier=0) const
 
unsigned int n_subscriptions () const
 
void list_subscribers () const
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Additional Inherited Members

- Static Public Member Functions inherited from Subscriptor
static ::ExceptionBaseExcInUse (int arg1, char *arg2, std::string &arg3)
 
static ::ExceptionBaseExcNoSubscriber (char *arg1, char *arg2)
 

Detailed Description

template<typename VectorType>
class PointerMatrixBase< VectorType >

Abstract class for use in iterations. This class provides the interface required by LAC solver classes. It allows to use different concrete matrix classes in the same context, as long as they apply to the same vector class.

Author
Guido Kanschat, 2000, 2001, 2002

Definition at line 51 of file pointer_matrix.h.

Member Typedef Documentation

◆ value_type

template<typename VectorType>
typedef VectorType::value_type PointerMatrixBase< VectorType >::value_type

Value type of this matrix. since the matrix itself is unknown, we take the value type of the vector. Therefore, matrix entries must be convertible to vector entries.

This was defined to make this matrix a possible template argument to BlockMatrixArray.

Definition at line 62 of file pointer_matrix.h.

Constructor & Destructor Documentation

◆ ~PointerMatrixBase()

template<typename VectorType >
PointerMatrixBase< VectorType >::~PointerMatrixBase ( )
inlinevirtual

Virtual destructor. Does nothing except making sure that the destructor of any derived class is called whenever a pointer-to-base-class object is destroyed.

Definition at line 578 of file pointer_matrix.h.

Member Function Documentation

◆ clear()

template<typename VectorType>
virtual void PointerMatrixBase< VectorType >::clear ( )
pure virtual

◆ vmult()

template<typename VectorType>
virtual void PointerMatrixBase< VectorType >::vmult ( VectorType &  dst,
const VectorType &  src 
) const
pure virtual

◆ Tvmult()

template<typename VectorType>
virtual void PointerMatrixBase< VectorType >::Tvmult ( VectorType &  dst,
const VectorType &  src 
) const
pure virtual

◆ vmult_add()

template<typename VectorType>
virtual void PointerMatrixBase< VectorType >::vmult_add ( VectorType &  dst,
const VectorType &  src 
) const
pure virtual

◆ Tvmult_add()

template<typename VectorType>
virtual void PointerMatrixBase< VectorType >::Tvmult_add ( VectorType &  dst,
const VectorType &  src 
) const
pure virtual

The documentation for this class was generated from the following file: