Sacado Package Browser (Single Doxygen Collection) Version of the Day
|
Derivative array storage class using dynamic memory allocation. More...
#include <Sacado_Fad_VectorDynamicStorage.hpp>
Public Types | |
typedef T | value_type |
Private Attributes | |
T | v_ |
bool | owns_mem |
Do we own the val/dx storage. | |
int | sz_ |
Derivative array size. | |
int | len_ |
Derivative array length. | |
int | stride_ |
Derivative array stride. | |
T * | val_ |
Value. | |
U * | dx_ |
Derivative array. | |
Derivative array storage class using dynamic memory allocation.
Definition at line 59 of file Sacado_Fad_VectorDynamicStorage.hpp.
typedef T Sacado::Fad::VectorDynamicStorage< T, U >::value_type |
Definition at line 63 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Default constructor.
Definition at line 68 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Constructor with size sz
.
Initializes derivative array 0 of length sz
Definition at line 77 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Constructor with supplied memory.
Definition at line 87 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Copy constructor.
Definition at line 97 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Destructor.
Definition at line 105 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Assignment.
Definition at line 114 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns number of derivative components.
Definition at line 140 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns array length.
Definition at line 144 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Resize the derivative array to sz.
Note: This does not necessarily preserve derivative components.
Definition at line 151 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Resize the derivative array to sz.
This method doest not preserve any existing derivative components but sets any that are added to zero.
Definition at line 171 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Expand derivative array to size sz.
This method preserves any existing derivative components and sets any that are added to zero.
Definition at line 193 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Zero out derivative array.
Definition at line 213 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Set value/derivative array memory.
Definition at line 219 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns value.
Definition at line 238 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns value.
Definition at line 242 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns derivative array.
Definition at line 246 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns derivative component i
with bounds checking.
Definition at line 250 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 254 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 258 of file Sacado_Fad_VectorDynamicStorage.hpp.
Definition at line 262 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
private |
Do we own the val/dx storage.
Definition at line 267 of file Sacado_Fad_VectorDynamicStorage.hpp.
Derivative array size.
Definition at line 270 of file Sacado_Fad_VectorDynamicStorage.hpp.
Derivative array length.
Definition at line 273 of file Sacado_Fad_VectorDynamicStorage.hpp.
|
private |
Derivative array stride.
Definition at line 276 of file Sacado_Fad_VectorDynamicStorage.hpp.
Definition at line 279 of file Sacado_Fad_VectorDynamicStorage.hpp.
Derivative array.
Definition at line 282 of file Sacado_Fad_VectorDynamicStorage.hpp.