|
Sacado Package Browser (Single Doxygen Collection) Version of the Day
|
Forward-mode AD class using static memory allocation, caching expression templates, and expression-level reverse mode. More...
#include <Sacado_ELRCacheFad_SFad.hpp>

Classes | |
| struct | apply |
| Turn SFad 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) | |
Public Member Functions | |
| ~SFad () | |
| Destructor. | |
| SFad & | operator= (const ValueT &v) |
| Assignment operator with constant right-hand-side. | |
| SFad & | operator= (const typename dummy< ValueT, ScalarT >::type &v) |
| Assignment operator with constant right-hand-side. | |
| SFad & | operator= (const SFad &x) |
| Assignment operator with DFad right-hand-side. | |
| template<typename S > | |
| SFad & | operator= (const Expr< S > &x) |
| Assignment operator with any expression right-hand-side. | |
Initialization methods | |
| SFad () | |
| Default constructor. | |
| SFad (const ValueT &x) | |
Constructor with supplied value x. | |
| SFad (const typename dummy< ValueT, ScalarT >::type &x) | |
Constructor with supplied value x of type ScalarT. | |
| SFad (const int sz, const ValueT &x) | |
Constructor with size sz and value x. | |
| SFad (const int sz, const int i, const ValueT &x) | |
Constructor with size sz, index i, and value x. | |
| SFad (const SFad &x) | |
| Copy constructor. | |
| template<typename S > | |
| SFad (const Expr< S > &x) | |
| Copy constructor from any Expression object. | |
Forward-mode AD class using static memory allocation, caching expression templates, and expression-level reverse mode.
This is the user-level class for forward mode AD with static memory allocation, and is appropriate for whenever the number of derivative components is known at compile time. The size of the derivative array is fixed by the template parameter Num. It is similar to Sacado::ELRFad::SFad, except it uses the caching expression templates that cache the results of val() calculations for later dx() calculations.
Definition at line 355 of file Sacado_ELRCacheFad_SFad.hpp.
| typedef ScalarType<ValueT>::type Sacado::ELRCacheFad::SFad< ValueT, Num >::ScalarT |
Typename of scalar's (which may be different from ValueT)
Definition at line 361 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | ) | [inline] |
Default constructor.
Initializes value to 0 and derivative array is empty
Definition at line 378 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | const ValueT & | x | ) | [inline] |
Constructor with supplied value x.
Initializes value to x and derivative array is empty
Definition at line 385 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | 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.
Definition at line 393 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | 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
Definition at line 400 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | 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.
Definition at line 409 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | const SFad< ValueT, Num > & | x | ) | [inline] |
Copy constructor.
Definition at line 413 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::SFad | ( | const Expr< S > & | x | ) | [inline] |
Copy constructor from any Expression object.
Definition at line 417 of file Sacado_ELRCacheFad_SFad.hpp.
| Sacado::ELRCacheFad::SFad< ValueT, Num >::~SFad | ( | ) | [inline] |
Destructor.
Definition at line 423 of file Sacado_ELRCacheFad_SFad.hpp.
| SFad& Sacado::ELRCacheFad::SFad< ValueT, Num >::operator= | ( | const ValueT & | v | ) | [inline] |
Assignment operator with constant right-hand-side.
Definition at line 426 of file Sacado_ELRCacheFad_SFad.hpp.
| SFad& Sacado::ELRCacheFad::SFad< ValueT, Num >::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.
Definition at line 435 of file Sacado_ELRCacheFad_SFad.hpp.
| SFad& Sacado::ELRCacheFad::SFad< ValueT, Num >::operator= | ( | const SFad< ValueT, Num > & | x | ) | [inline] |
Assignment operator with DFad right-hand-side.
Definition at line 441 of file Sacado_ELRCacheFad_SFad.hpp.
| SFad& Sacado::ELRCacheFad::SFad< ValueT, Num >::operator= | ( | const Expr< S > & | x | ) | [inline] |
Assignment operator with any expression right-hand-side.
Definition at line 447 of file Sacado_ELRCacheFad_SFad.hpp.
1.7.4