Reference documentation for deal.II version 9.1.1
|
#include <deal.II/lac/communication_pattern_base.h>
Public Member Functions | |
virtual | ~CommunicationPatternBase ()=default |
virtual void | reinit (const IndexSet &vector_space_vector_index_set, const IndexSet &read_write_vector_index_set, const MPI_Comm &communicator)=0 |
virtual const MPI_Comm & | get_mpi_communicator () const =0 |
CommunicationPattern is an abstract class that is used to define a communication plan that can be called repeatedly to efficiently obtain off-processor elements. The idea is to decouple the communication pattern from the vectors. The goal is to reuse the same communication pattern for different vectors. This is similar to the way SparseMatrix and SparsityPattern works.
Definition at line 39 of file communication_pattern_base.h.
|
virtualdefault |
Destructor.
|
pure virtual |
Reinitialize the communication pattern. The first argument vector_space_vector_index_set
is the index set associated to a VectorSpaceVector object. The second argument read_write_vector_index_set
is the index set associated to a ReadWriteVector object.
Implemented in Utilities::MPI::Partitioner, and LinearAlgebra::EpetraWrappers::CommunicationPattern.
|
pure virtual |
Return a constant reference to the underlying mpi communicator.
Implemented in Utilities::MPI::Partitioner, and LinearAlgebra::EpetraWrappers::CommunicationPattern.