Reference documentation for deal.II version 9.0.0
|
#include <deal.II/base/table.h>
Public Types | |
typedef TableBase< 2, T >::size_type | size_type |
typedef AlignedVector< T >::value_type | value_type |
typedef AlignedVector< T >::reference | reference |
typedef AlignedVector< T >::const_reference | const_reference |
typedef TransposeTableIterators::Iterator< T, true > | const_iterator |
typedef TransposeTableIterators::Iterator< T, false > | iterator |
Public Types inherited from TableBase< 2, T > | |
typedef AlignedVector< T >::size_type | size_type |
Public Member Functions | |
TransposeTable ()=default | |
TransposeTable (const size_type size1, const size_type size2) | |
void | reinit (const size_type size1, const size_type size2, const bool omit_default_initialization=false) |
const_reference | operator() (const size_type i, const size_type j) const |
reference | operator() (const size_type i, const size_type j) |
size_type | n_rows () const |
size_type | n_cols () const |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
Public Member Functions inherited from TableBase< 2, T > | |
TableBase ()=default | |
TableBase (const TableIndices< N > &sizes) | |
TableBase (const TableIndices< N > &sizes, InputIterator entries, const bool C_style_indexing=true) | |
TableBase (const TableBase< N, T > &src) | |
TableBase (const TableBase< N, T2 > &src) | |
TableBase (TableBase< N, T > &&src) noexcept | |
~TableBase ()=default | |
TableBase< N, T > & | operator= (const TableBase< N, T > &src) |
TableBase< N, T > & | operator= (const TableBase< N, T2 > &src) |
TableBase< N, T > & | operator= (TableBase< N, T > &&src) noexcept |
bool | operator== (const TableBase< N, T > &T2) const |
void | reset_values () |
void | reinit (const TableIndices< N > &new_size, const bool omit_default_initialization=false) |
size_type | size (const unsigned int i) const |
const TableIndices< N > & | size () const |
size_type | n_elements () const |
bool | empty () const |
void | fill (InputIterator entries, const bool C_style_indexing=true) |
void | fill (const T &value) |
AlignedVector< T >::reference | operator() (const TableIndices< N > &indices) |
AlignedVector< T >::const_reference | operator() (const TableIndices< N > &indices) const |
void | swap (TableBase< N, T > &v) |
std::size_t | memory_consumption () const |
void | serialize (Archive &ar, const unsigned int version) |
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) |
Protected Member Functions | |
reference | el (const size_type i, const size_type j) |
const_reference | el (const size_type i, const size_type j) const |
Protected Member Functions inherited from TableBase< 2, T > | |
size_type | position (const TableIndices< N > &indices) const |
AlignedVector< T >::reference | el (const TableIndices< N > &indices) |
AlignedVector< T >::const_reference | el (const TableIndices< N > &indices) const |
Friends | |
class | TransposeTableIterators::AccessorBase< T, true > |
class | TransposeTableIterators::AccessorBase< T, false > |
class | TransposeTableIterators::Accessor< T, false > |
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) |
Protected Attributes inherited from TableBase< 2, T > | |
AlignedVector< T > | values |
TableIndices< N > | table_size |
A class representing a transpose two-dimensional table, i.e. a matrix of objects (not necessarily only numbers) in column first numbering (FORTRAN convention). The only real difference is therefore really in the storage format.
This class copies the functions of Table<2,T>, but the element access and the dimensions will be for the transpose ordering of the data field in TableBase.
typedef TableBase<2,T>::size_type TransposeTable< T >::size_type |
typedef AlignedVector<T>::value_type TransposeTable< T >::value_type |
typedef AlignedVector<T>::reference TransposeTable< T >::reference |
typedef AlignedVector<T>::const_reference TransposeTable< T >::const_reference |
typedef TransposeTableIterators::Iterator<T, true> TransposeTable< T >::const_iterator |
typedef TransposeTableIterators::Iterator<T, false> TransposeTable< T >::iterator |
|
default |
Default constructor. Set all dimensions to zero.
TransposeTable< T >::TransposeTable | ( | const size_type | size1, |
const size_type | size2 | ||
) |
Constructor. Pass down the given dimensions to the base class.
void TransposeTable< T >::reinit | ( | const size_type | size1, |
const size_type | size2, | ||
const bool | omit_default_initialization = false |
||
) |
Reinitialize the object. This function is mostly here for compatibility with the earlier vector2d
class. Passes down to the base class by converting the arguments to the data type requested by the base class.
const_reference TransposeTable< T >::operator() | ( | const size_type | i, |
const size_type | j | ||
) | const |
Direct access to one element of the table by specifying all indices at the same time. Range checks are performed.
This version of the function only allows read access.
reference TransposeTable< T >::operator() | ( | const size_type | i, |
const size_type | j | ||
) |
Direct access to one element of the table by specifying all indices at the same time. Range checks are performed.
This version of the function allows read-write access.
size_type TransposeTable< T >::n_rows | ( | ) | const |
Number of rows. This function really makes only sense since we have a two-dimensional object here.
size_type TransposeTable< T >::n_cols | ( | ) | const |
Number of columns. This function really makes only sense since we have a two-dimensional object here.
iterator TransposeTable< T >::begin | ( | ) |
Return an iterator pointing to the first entry.
const_iterator TransposeTable< T >::begin | ( | ) | const |
Return a constant iterator pointing to the first entry.
iterator TransposeTable< T >::end | ( | ) |
Return an iterator pointing to one past the last entry.
const_iterator TransposeTable< T >::end | ( | ) | const |
Return a constant iterator pointing to one past the last entry.
|
protected |
Return a read-write reference to the element (i,j)
.
This function does no bounds checking and is only to be used internally and in functions already checked.
These functions are mainly here for compatibility with a former implementation of these table classes for 2d arrays, then called vector2d
.
|
protected |
Return the value of the element (i,j)
as a read-only reference.
This function does no bounds checking and is only to be used internally and in functions already checked.
We return the requested value as a constant reference rather than by value since this object may hold data types that may be large, and we don't know here whether copying is expensive or not.
These functions are mainly here for compatibility with a former implementation of these table classes for 2d arrays, then called vector2d
.
|
friend |
|
friend |