Reference documentation for deal.II version 9.1.1
|
Public Member Functions | |
TemporaryData & | operator= (const TemporaryData &) |
Public Attributes | |
std::vector< size_type > | counter_within_block |
std::vector< std::vector< size_type > > | column_indices |
std::vector< std::vector< value_type > > | column_values |
Threads::Mutex | mutex |
A structure containing some fields used by the set() and add() functions that is used to pre-sort the input fields. Since one can reasonably expect to call set() and add() from multiple threads at once as long as the matrix indices that are touched are disjoint, these temporary data fields need to be guarded by a mutex; the structure therefore contains such a mutex as a member variable.
Definition at line 1013 of file block_matrix_base.h.
|
inline |
Copy operator. This is needed because the default copy operator of this class is deleted (since Threads::Mutex is not copyable) and hence the default copy operator of the enclosing class is also deleted.
The implementation here simply does nothing – TemporaryData objects are just scratch objects that are resized at the beginning of their use, so there is no point actually copying anything.
Definition at line 1049 of file block_matrix_base.h.
std::vector<size_type> BlockMatrixBase< MatrixType >::TemporaryData::counter_within_block |
Temporary vector for counting the elements written into the individual blocks when doing a collective add or set.
Definition at line 1019 of file block_matrix_base.h.
std::vector<std::vector<size_type> > BlockMatrixBase< MatrixType >::TemporaryData::column_indices |
Temporary vector for column indices on each block when writing local to global data on each sparse matrix.
Definition at line 1025 of file block_matrix_base.h.
std::vector<std::vector<value_type> > BlockMatrixBase< MatrixType >::TemporaryData::column_values |
Temporary vector for storing the local values (they need to be reordered when writing local to global).
Definition at line 1031 of file block_matrix_base.h.
Threads::Mutex BlockMatrixBase< MatrixType >::TemporaryData::mutex |
A mutex variable used to guard access to the member variables of this structure;
Definition at line 1037 of file block_matrix_base.h.