action functions
|
Please note that the library has not been "officially" released. While we continue to work on the documentation, these web pages are likely to contain broken links and documents in draft form. Please send an email to if you wish to be informed of the library's "official" release. |
#include <Vector.h>
Definition at line 59 of file Vector.h.
Public Types | |
| typedef _Tp | value_type |
| Typedef to make the constructors look a bit cleaner. | |
| typedef value_type & | reference |
| Typedef to make the constructors look a bit cleaner. | |
| typedef const value_type & | const_reference |
| Typedef to make the constructors look a bit cleaner. | |
| typedef size_t | size_type |
| Typedef to make the constructors look a bit cleaner. | |
Public Member Functions | |
| Vector () | |
| Construct an empty vector. | |
| Vector (size_type __n) | |
| A constructor that creates a vector of size __n. Note the use of explicit for "strong" type checking. | |
| Vector (size_type __n, const _Tp &__value) | |
| A constructor that creates a vector of size __n and initialises every entry to __value. | |
| Vector (const Vector< _Tp > &__x) | |
| Copy constructor. | |
| void | initialise (const _Tp &__value) |
| Iterate over all values and set to the desired value. | |
| typedef const value_type& oomph::Vector< _Tp >::const_reference |
| typedef value_type& oomph::Vector< _Tp >::reference |
| typedef size_t oomph::Vector< _Tp >::size_type |
| typedef _Tp oomph::Vector< _Tp >::value_type |
| oomph::Vector< _Tp >::Vector | ( | ) | [inline] |
| oomph::Vector< _Tp >::Vector | ( | size_type | __n | ) | [inline, explicit] |
| oomph::Vector< _Tp >::Vector | ( | size_type | __n, | |
| const _Tp & | __value | |||
| ) | [inline] |
| oomph::Vector< _Tp >::Vector | ( | const Vector< _Tp > & | __x | ) | [inline] |
| void oomph::Vector< _Tp >::initialise | ( | const _Tp & | __value | ) | [inline] |
Iterate over all values and set to the desired value.
Definition at line 157 of file Vector.h.
Referenced by oomph::BlockPreconditioner< MATRIX >::block_setup(), oomph::GeneralisedElement::get_jacobian(), oomph::GeneralisedElement::get_jacobian_and_mass_matrix(), oomph::GeneralisedElement::get_mass_matrix(), oomph::GeneralisedElement::get_residuals(), oomph::SolidFiniteElement::get_residuals_for_solid_ic(), oomph::PseudoBucklingRingElement::get_residuals_generic(), and oomph::BlockPreconditioner< oomph::CRDoubleMatrix >::set_nmesh().
1.4.7