![]() |
Reference documentation for deal.II version 8.5.1
|
#include <deal.II/base/table.h>
Public Types | |
| typedef TableBase< 5, T >::size_type | size_type |
Public Types inherited from TableBase< 5, T > | |
| typedef AlignedVector< T >::size_type | size_type |
Public Member Functions | |
| Table () | |
| Table (const unsigned int size1, const unsigned int size2, const unsigned int size3, const unsigned int size4, const unsigned int size5) | |
| ::internal::TableBaseAccessors::Accessor< 5, T, true, 4 > | operator[] (const unsigned int i) const |
| ::internal::TableBaseAccessors::Accessor< 5, T, false, 4 > | operator[] (const unsigned int i) |
| AlignedVector< T >::const_reference | operator() (const unsigned int i, const unsigned int j, const unsigned int k, const unsigned int l, const unsigned int m) const |
| AlignedVector< T >::reference | operator() (const unsigned int i, const unsigned int j, const unsigned int k, const unsigned int l, const unsigned int m) |
| AlignedVector< T >::reference | operator() (const TableIndices< 5 > &indices) |
| AlignedVector< T >::const_reference | operator() (const TableIndices< 5 > &indices) const |
Public Member Functions inherited from TableBase< 5, T > | |
| TableBase () | |
| 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) | |
| ~TableBase () | |
| 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) |
| bool | operator== (const TableBase< N, T > &T2) const |
| void | reset_values () |
| void | reinit (const TableIndices< N > &new_size, const bool omit_default_initialization=false) |
| unsigned int | 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 &&) | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| Subscriptor & | operator= (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 ::ExceptionBase & | ExcInUse (int arg1, char *arg2, std::string &arg3) |
| static ::ExceptionBase & | ExcNoSubscriber (char *arg1, char *arg2) |
Protected Member Functions inherited from TableBase< 5, 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 |
Protected Attributes inherited from TableBase< 5, T > | |
| AlignedVector< T > | values |
| TableIndices< N > | table_size |
A class representing a five-dimensional table of objects (not necessarily only numbers).
For the rationale of this class, and a description of the interface, see the base class.
| Table< 5, T >::Table | ( | const unsigned int | size1, |
| const unsigned int | size2, | ||
| const unsigned int | size3, | ||
| const unsigned int | size4, | ||
| const unsigned int | size5 | ||
| ) |
Constructor. Pass down the given dimensions to the base class.
| ::internal::TableBaseAccessors::Accessor<5,T,true,4> Table< 5, T >::operator[] | ( | const unsigned int | i | ) | const |
Access operator. Generate an object that accesses the requested four- dimensional subobject of this five-dimensional table. Range checks are performed.
This version of the function only allows read access.
| ::internal::TableBaseAccessors::Accessor<5,T,false,4> Table< 5, T >::operator[] | ( | const unsigned int | i | ) |
Access operator. Generate an object that accesses the requested four- dimensional subobject of this five-dimensional table. Range checks are performed.
This version of the function allows read-write access.
| AlignedVector<T>::const_reference Table< 5, T >::operator() | ( | const unsigned int | i, |
| const unsigned int | j, | ||
| const unsigned int | k, | ||
| const unsigned int | l, | ||
| const unsigned int | m | ||
| ) | 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.
| AlignedVector<T>::reference Table< 5, T >::operator() | ( | const unsigned int | i, |
| const unsigned int | j, | ||
| const unsigned int | k, | ||
| const unsigned int | l, | ||
| const unsigned int | m | ||
| ) |
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.
| AlignedVector<T>::reference Table< 5, T >::operator() | ( | const TableIndices< 5 > & | indices | ) |
Make the corresponding operator () from the TableBase base class available also in this class.
| AlignedVector<T>::const_reference Table< 5, T >::operator() | ( | const TableIndices< 5 > & | indices | ) | const |
Make the corresponding operator () from the TableBase base class available also in this class.
1.8.13