Sacado Package Browser (Single Doxygen Collection) Version of the Day
|
Derivative array storage class using static, fixed memory allocation. More...
#include <Sacado_Fad_Exp_StaticFixedStorage.hpp>
Classes | |
struct | apply |
Turn StaticFixedStorage into a meta-function class usable with mpl::apply. More... | |
struct | apply_N |
Replace static derivative length. More... | |
Public Types | |
typedef std::remove_cv< T >::type | value_type |
Static Public Attributes | |
static constexpr bool | is_statically_sized = true |
static constexpr int | static_size = Num |
static constexpr bool | is_view = false |
Protected Attributes | |
T | val_ |
Value. | |
T | dx_ [Num] |
Derivative array. | |
Derivative array storage class using static, fixed memory allocation.
This class uses a statically allocated array whose dimension is fixed by the template parameter Num
. The dimension cannot be resized.
Definition at line 50 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
typedef std::remove_cv<T>::type Sacado::Fad::Exp::StaticFixedStorage< T, Num >::value_type |
Definition at line 54 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
default |
Default constructor.
|
inline |
Constructor with value.
Definition at line 85 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Constructor with size sz
.
Initializes derivative array 0 of length sz
Definition at line 95 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Constructor with size sz
, index i
, and value x
.
Initializes value to x
and derivative array of length sz
as row i
of the identity matrix, i.e., sets derivative component i
to 1 and all other's to zero.
Definition at line 113 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Copy constructor.
Can't make this " = default" because of scalar types that don't define a const copy consturctor (like Rad). We also can't leave it and let it be implicitly generated because of SACADO_INLINE_FUNCTION.
Definition at line 125 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Move constructor.
Definition at line 133 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
default |
Destructor.
|
inline |
Assignment.
Can't make this " = default" because of scalar types that don't define a const operator= (like Rad). We also can't leave it and let it be implicitly generated because of SACADO_INLINE_FUNCTION.
Definition at line 150 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Move assignment.
Definition at line 161 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inlineconstexpr |
Returns number of derivative components.
Definition at line 172 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inlineconstexpr |
Returns array length.
Definition at line 176 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Resize the derivative array to sz.
Definition at line 180 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Resize the derivative array to sz.
Definition at line 194 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Expand derivative array to size sz.
Definition at line 204 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Zero out derivative array.
Definition at line 214 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns value.
Definition at line 218 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns value.
Definition at line 222 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative array.
Definition at line 226 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
with bounds checking.
Definition at line 230 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 234 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 238 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
staticconstexpr |
Definition at line 55 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
Definition at line 56 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
Definition at line 57 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
Definition at line 243 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
Derivative array.
Definition at line 246 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.