|
Sacado
Development
|
Derivative array storage class using dynamic memory allocation. More...
#include <Sacado_Fad_MemPoolStorage.hpp>

Public Member Functions | |
| MemPoolStorage (const T &x) | |
| Default constructor. | |
| MemPoolStorage (const int sz, const T &x) | |
Constructor with size sz. | |
| MemPoolStorage (const MemPoolStorage &x) | |
| Copy constructor. | |
| ~MemPoolStorage () | |
| Destructor. | |
| MemPoolStorage & | operator= (const MemPoolStorage &x) |
| Assignment. | |
| int | size () const |
| Returns number of derivative components. | |
| void | resize (int sz) |
| Resize the derivative array to sz. | |
| void | resizeAndZero (int sz) |
| Resize the derivative array to sz. | |
| void | expand (int sz) |
| Expand derivative array to size sz. | |
| void | zero () |
| Zero out derivative array. | |
| const T & | val () const |
| Returns value. | |
| T & | val () |
| Returns value. | |
| const T * | dx () const |
| Returns derivative array. | |
| T | dx (int i) const |
Returns derivative component i with bounds checking. | |
| T & | fastAccessDx (int i) |
Returns derivative component i without bounds checking. | |
| const T & | fastAccessDx (int i) const |
Returns derivative component i without bounds checking. | |
Static Public Attributes | |
| static MemPool * | defaultPool_ |
| Default memory pool. | |
Protected Attributes | |
| MemPool * | myPool_ |
| Memory pool. | |
Derivative array storage class using dynamic memory allocation.
| Sacado::Fad::MemPoolStorage< T >::MemPoolStorage | ( | const int | sz, |
| const T & | x | ||
| ) | [inline] |
Constructor with size sz.
Initializes derivative array 0 of length sz
| void Sacado::Fad::MemPoolStorage< T >::expand | ( | int | sz | ) | [inline] |
Expand derivative array to size sz.
This method preserves any existing derivative components and sets any that are added to zero.
| void Sacado::Fad::MemPoolStorage< T >::resize | ( | int | sz | ) | [inline] |
Resize the derivative array to sz.
Note: This does not necessarily preserve derivative components.
| void Sacado::Fad::MemPoolStorage< T >::resizeAndZero | ( | int | sz | ) | [inline] |
Resize the derivative array to sz.
This method doest not preserve any existing derivative components but sets any that are added to zero.
1.7.6.1