30#ifndef SACADO_FAD_GENERALFADEXPR_HPP
31#define SACADO_FAD_GENERALFADEXPR_HPP
45 template <
typename T,
typename Storage>
88 Expr(
const int sz,
const int i,
const T &
x) :
102 template <
typename S>
#define SACADO_INLINE_FUNCTION
#define SACADO_ENABLE_VALUE_CTOR_DECL
#define SACADO_ENABLE_EXPR_CTOR_DECL
SACADO_INLINE_FUNCTION Expr(const S &x, SACADO_ENABLE_VALUE_CTOR_DECL)
Constructor with supplied value x.
SACADO_INLINE_FUNCTION ~Expr()
Destructor.
GeneralFad< T, Storage >::scalar_type scalar_type
Typename of scalar's (which may be different from value_type)
SACADO_INLINE_FUNCTION Expr(const Storage &s)
Constructor with supplied storage s.
SACADO_INLINE_FUNCTION Expr(const Expr< S > &x, SACADO_ENABLE_EXPR_CTOR_DECL)
Copy constructor from any Expression object.
SACADO_INLINE_FUNCTION Expr()
Default constructor.
SACADO_INLINE_FUNCTION Expr(const int sz, const int i, const T &x)
Constructor with size sz, index i, and value x.
SACADO_INLINE_FUNCTION Expr(const Expr &x)
Copy constructor.
GeneralFad< T, Storage >::value_type value_type
Typename of values.
SACADO_INLINE_FUNCTION Expr(const int sz, const T &x, const DerivInit zero_out=InitDerivArray)
Constructor with size sz and value x.
BaseExpr< GeneralFad< T, Storage > >::type base_expr_type
Typename of base-expressions.
Wrapper for a generic expression template.
Forward-mode AD class templated on the storage for the derivative array.
RemoveConst< T >::type value_type
Typename of values.
ScalarType< value_type >::type scalar_type
Typename of scalar's (which may be different from T)
DerivInit
Enum use to signal whether the derivative array should be initialized in AD object constructors.
@ InitDerivArray
Initialize the derivative array.
Meta-function for determining concrete base expression.