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 <general_purpose_preconditioners.h>
Definition at line 199 of file general_purpose_preconditioners.h.
Public Member Functions | |
| CompressedMatrixCoefficient () | |
| Constructor (no arguments). | |
| CompressedMatrixCoefficient (const unsigned &index, const double &value) | |
| Constructor (takes the index and value as arguments). | |
| ~CompressedMatrixCoefficient () | |
| Destructor (does nothing). | |
| CompressedMatrixCoefficient (const CompressedMatrixCoefficient &a) | |
| Copy Constructor. Not Broken. Required for STL sort function. | |
| void | operator= (const CompressedMatrixCoefficient &a) |
| Assignment Operator. Not Broken. Required for STL sort function. | |
| bool | operator< (const CompressedMatrixCoefficient &a) const |
| Less Than Operator (for the STL sort function). | |
| unsigned & | index () |
| access function for the coefficient's (row or column) index | |
| double & | value () |
| access function for the coefficient value | |
| unsigned | index () const |
| Access function for the coefficient's (row or column_ index (const version). | |
| double | value () const |
| access function for the coefficient's value (const version) | |
Private Attributes | |
| unsigned | Index |
| the row or column index of the compressed-matrix coefficient | |
| double | Value |
| the value of the compressed-matrix coefficient | |
| oomph::CompressedMatrixCoefficient::CompressedMatrixCoefficient | ( | ) | [inline] |
| oomph::CompressedMatrixCoefficient::CompressedMatrixCoefficient | ( | const unsigned & | index, | |
| const double & | value | |||
| ) | [inline] |
Constructor (takes the index and value as arguments).
Definition at line 208 of file general_purpose_preconditioners.h.
| oomph::CompressedMatrixCoefficient::~CompressedMatrixCoefficient | ( | ) | [inline] |
| oomph::CompressedMatrixCoefficient::CompressedMatrixCoefficient | ( | const CompressedMatrixCoefficient & | a | ) | [inline] |
| unsigned oomph::CompressedMatrixCoefficient::index | ( | ) | const [inline] |
Access function for the coefficient's (row or column_ index (const version).
Definition at line 246 of file general_purpose_preconditioners.h.
References Index.
| unsigned& oomph::CompressedMatrixCoefficient::index | ( | ) | [inline] |
access function for the coefficient's (row or column) index
Definition at line 239 of file general_purpose_preconditioners.h.
References Index.
Referenced by CompressedMatrixCoefficient(), operator<(), and operator=().
| bool oomph::CompressedMatrixCoefficient::operator< | ( | const CompressedMatrixCoefficient & | a | ) | const [inline] |
Less Than Operator (for the STL sort function).
Definition at line 233 of file general_purpose_preconditioners.h.
| void oomph::CompressedMatrixCoefficient::operator= | ( | const CompressedMatrixCoefficient & | a | ) | [inline] |
| double oomph::CompressedMatrixCoefficient::value | ( | ) | const [inline] |
access function for the coefficient's value (const version)
Definition at line 249 of file general_purpose_preconditioners.h.
References Value.
| double& oomph::CompressedMatrixCoefficient::value | ( | ) | [inline] |
access function for the coefficient value
Definition at line 242 of file general_purpose_preconditioners.h.
References Value.
Referenced by CompressedMatrixCoefficient(), and operator=().
unsigned oomph::CompressedMatrixCoefficient::Index [private] |
the row or column index of the compressed-matrix coefficient
Definition at line 254 of file general_purpose_preconditioners.h.
Referenced by CompressedMatrixCoefficient(), index(), operator<(), and operator=().
double oomph::CompressedMatrixCoefficient::Value [private] |
the value of the compressed-matrix coefficient
Definition at line 257 of file general_purpose_preconditioners.h.
Referenced by CompressedMatrixCoefficient(), operator=(), and value().
1.4.7