|
Sacado
Development
|
Forward-mode AD class using dynamic memory allocation and caching expression templates. More...
#include <Sacado_CacheFad_DFad.hpp>


Classes | |
| struct | apply |
| Turn DFad into a meta-function class usable with mpl::apply. More... | |
Public Types | |
| typedef ScalarType< ValueT >::type | ScalarT |
| Typename of scalar's (which may be different from ValueT) | |
|
typedef GeneralFad< ValueT, Fad::DynamicStorage< ValueT > >::value_type | value_type |
|
typedef GeneralFad< ValueT, Fad::DynamicStorage< ValueT > >::scalar_type | scalar_type |
Public Member Functions | |
| ~DFad () | |
| Destructor. | |
| DFad & | operator= (const ValueT &v) |
| Assignment operator with constant right-hand-side. | |
| DFad & | operator= (const typename dummy< ValueT, ScalarT >::type &v) |
| Assignment operator with constant right-hand-side. | |
| DFad & | operator= (const DFad &x) |
| Assignment operator with DFad right-hand-side. | |
| template<typename S > | |
| DFad & | operator= (const Expr< S > &x) |
| Assignment operator with any expression right-hand-side. | |
Initialization methods | |
| DFad () | |
| Default constructor. | |
| DFad (const ValueT &x) | |
Constructor with supplied value x of type ValueT. | |
| DFad (const typename dummy< ValueT, ScalarT >::type &x) | |
Constructor with supplied value x of type ScalarT. | |
| DFad (const int sz, const ValueT &x) | |
Constructor with size sz and value x. | |
| DFad (const int sz, const int i, const ValueT &x) | |
Constructor with size sz, index i, and value x. | |
| DFad (const DFad &x) | |
| Copy constructor. | |
| template<typename S > | |
| DFad (const Expr< S > &x) | |
| Copy constructor from any Expression object. | |
Forward-mode AD class using dynamic memory allocation and caching expression templates.
This is a user-level class for forward mode AD with dynamic memory allocation, and is appropriate for whenever the number of derivative components is not known at compile time. The user interface is provided by Sacado::CacheFad::GeneralFad. It is similar to Sacado::Fad::DFad, except it uses the caching expression templates that cache the results of val() calculations for later dx() calculations.
| Sacado::CacheFad::DFad< ValueT >::DFad | ( | ) | [inline] |
Default constructor.
Initializes value to 0 and derivative array is empty
| Sacado::CacheFad::DFad< ValueT >::DFad | ( | const ValueT & | x | ) | [inline] |
Constructor with supplied value x of type ValueT.
Initializes value to x and derivative array is empty
| Sacado::CacheFad::DFad< ValueT >::DFad | ( | const typename dummy< ValueT, ScalarT >::type & | x | ) | [inline] |
Constructor with supplied value x of type ScalarT.
Initializes value to ValueT(x) and derivative array is empty. Creates a dummy overload when ValueT and ScalarT are the same type.
| Sacado::CacheFad::DFad< ValueT >::DFad | ( | const int | sz, |
| const ValueT & | x | ||
| ) | [inline] |
Constructor with size sz and value x.
Initializes value to x and derivative array 0 of length sz
| Sacado::CacheFad::DFad< ValueT >::DFad | ( | const int | sz, |
| const int | i, | ||
| const ValueT & | x | ||
| ) | [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.
| DFad& Sacado::CacheFad::DFad< ValueT >::operator= | ( | const typename dummy< ValueT, ScalarT >::type & | v | ) | [inline] |
Assignment operator with constant right-hand-side.
Creates a dummy overload when ValueT and ScalarT are the same type.
1.7.6.1