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

Public Member Functions | |
| VectorDynamicStorage (const T &x) | |
| Default constructor. | |
| VectorDynamicStorage (const int sz, const T &x) | |
Constructor with size sz. | |
| VectorDynamicStorage (const int sz, T *x, S *dx_p, const int stride, bool zero_out) | |
| Constructor with supplied memory. | |
| VectorDynamicStorage (const VectorDynamicStorage &x) | |
| Copy constructor. | |
| ~VectorDynamicStorage () | |
| Destructor. | |
| VectorDynamicStorage & | operator= (const VectorDynamicStorage &x) |
| Assignment. | |
| int | size () const |
| Returns number of derivative components. | |
| int | length () const |
| Returns array length. | |
| void | resize (int sz) |
| Resize the derivative array to sz. | |
| void | zero () |
| Zero out derivative array. | |
| void | setMemory (int sz, T *x, S *dx_p, int stride) |
| Set value/derivative array memory. | |
| const T & | val () const |
| Returns value. | |
| T & | val () |
| Returns value. | |
| const S * | dx () const |
| Returns derivative array. | |
| S | dx (int i) const |
Returns derivative component i with bounds checking. | |
| S & | fastAccessDx (int i) |
Returns derivative component i without bounds checking. | |
| const S & | fastAccessDx (int i) const |
Returns derivative component i without bounds checking. | |
Derivative array storage class using dynamic memory allocation.
| Sacado::Fad::VectorDynamicStorage< T, S >::VectorDynamicStorage | ( | const int | sz, |
| const T & | x | ||
| ) | [inline] |
Constructor with size sz.
Initializes derivative array 0 of length sz
1.7.4