#include <Sacado_ELRFad_DFad.hpp>
Inheritance diagram for Sacado::ELRFad::DFad< ValueT, ValueT >:


Public Member Functions | |
| ~DFad () | |
| Destructor. | |
| DFad & | operator= (const ValueT &val) |
| 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 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. | |
This is the specialization of DFad<ValueT,ScalarT> for when ValueT and ScalarT are the same type. It removes an extra constructor that would be duplicated in this case.
| Sacado::ELRFad::DFad< ValueT, ValueT >::DFad | ( | ) | [inline] |
Default constructor.
Initializes value to 0 and derivative array is empty
| Sacado::ELRFad::DFad< ValueT, ValueT >::DFad | ( | const ValueT & | x | ) | [inline] |
Constructor with supplied value x of type ValueT.
Initializes value to x and derivative array is empty
| Sacado::ELRFad::DFad< ValueT, 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::ELRFad::DFad< ValueT, 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.
1.4.7