#include <AbstractLinAlgPack_SparseElement.hpp>
Public Typedefs. | |
| typedef T_Value | value_type |
| | |
| typedef T_Index | index_type |
| | |
Constructors | |
| SparseElement () | |
| Construct uninitialized (value() == 0.0#, index() == 0#). | |
| SparseElement (index_type index, value_type value) | |
| Construct with a value and index set. | |
Value and index access | |
| value_type & | value () |
| | |
| const value_type & | value () const |
| | |
| const index_type & | index () const |
| | |
| void | initialize (index_type index, value_type value) |
| Initialize. | |
| void | change_index (index_type index) |
| Change the index. | |
This class abstracts a sparse element of a templated type. It is ment to be used in a sparse vector. Objects of this type are designed so that the size of the object is the same at least two value_type objects.
The default assignment operator and copy constructor are allowed.
Definition at line 47 of file AbstractLinAlgPack_SparseElement.hpp.
| typedef T_Value AbstractLinAlgPack::SparseElement< T_Index, T_Value >::value_type |
| typedef T_Index AbstractLinAlgPack::SparseElement< T_Index, T_Value >::index_type |
| AbstractLinAlgPack::SparseElement< T_Index, T_Value >::SparseElement | ( | ) | [inline] |
Construct uninitialized (value() == 0.0#, index() == 0#).
Definition at line 63 of file AbstractLinAlgPack_SparseElement.hpp.
| AbstractLinAlgPack::SparseElement< T_Index, T_Value >::SparseElement | ( | index_type | index, | |
| value_type | value | |||
| ) | [inline] |
Construct with a value and index set.
Definition at line 70 of file AbstractLinAlgPack_SparseElement.hpp.
| value_type& AbstractLinAlgPack::SparseElement< T_Index, T_Value >::value | ( | ) | [inline] |
| const value_type& AbstractLinAlgPack::SparseElement< T_Index, T_Value >::value | ( | ) | const [inline] |
| const index_type& AbstractLinAlgPack::SparseElement< T_Index, T_Value >::index | ( | ) | const [inline] |
| void AbstractLinAlgPack::SparseElement< T_Index, T_Value >::initialize | ( | index_type | index, | |
| value_type | value | |||
| ) | [inline] |
| void AbstractLinAlgPack::SparseElement< T_Index, T_Value >::change_index | ( | index_type | index | ) | [inline] |
1.4.7