#include <Sacado_CacheFad_GeneralFadExpr.hpp>
Inheritance diagram for Sacado::CacheFad::Expr< GeneralFad< T, Storage > >:


Public Types | |
|
typedef GeneralFad< T, Storage >::value_type | value_type |
| Typename of values. | |
|
typedef GeneralFad< T, Storage >::scalar_type | scalar_type |
| Typename of scalar's (which may be different from T). | |
Public Member Functions | |
| Expr () | |
| Default constructor. | |
| Expr (const T &x) | |
Constructor with supplied value x. | |
| Expr (const int sz, const T &x) | |
Constructor with size sz and value x. | |
| Expr (const int sz, const int i, const T &x) | |
Constructor with size sz, index i, and value x. | |
| Expr (const Expr &x) | |
| Copy constructor. | |
| template<typename S> | |
| Expr (const Expr< S > &x) | |
| Copy constructor from any Expression object. | |
| ~Expr () | |
| Destructor. | |
This template class represents a simple GeneralFad expression and mixes-in the GeneralFad interface and the expression template interface using the caching expression templates.
| Sacado::CacheFad::Expr< GeneralFad< T, Storage > >::Expr | ( | const T & | x | ) | [inline] |
Constructor with supplied value x.
Initializes value to x and derivative array is empty
| Sacado::CacheFad::Expr< GeneralFad< T, Storage > >::Expr | ( | const int | sz, | |
| const T & | x | |||
| ) | [inline] |
Constructor with size sz and value x.
Initializes value to x and derivative array 0 of length sz
| Sacado::CacheFad::Expr< GeneralFad< T, Storage > >::Expr | ( | const int | sz, | |
| const int | i, | |||
| const T & | 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