30 #ifndef SACADO_FAD_EXP_GENERALFAD_HPP
31 #define SACADO_FAD_EXP_GENERALFAD_HPP
49 template <
typename Storage>
51 public Expr< GeneralFad<Storage> >,
66 using typename StorageType::value_type;
72 static constexpr
bool is_view = Storage::is_view;
94 using ExtenderType::ExtenderType;
109 template <
typename S>
115 template <
typename S>
135 void diff(
const int ith,
const int n) {
136 if (this->size() != n)
162 template <
typename S>
166 const expr_type& x = xx.derived();
169 if (x.size() != this->size())
return false;
170 bool eq = IE::eval(x.val(), this->
val());
171 const int sz = this->size();
173 eq = eq && IE::eval(x.dx(i), this->
dx(i));
198 if (is_const && this->size()!=0)
210 template <
typename S>
214 if (this->size()) this->resize(0);
229 template <
typename S>
244 template <
typename S>
252 template <
typename S>
260 template <
typename S>
263 const int sz = this->size();
271 template <typename S>
274 const int sz = this->size();
310 template <
typename S>
318 template <
typename S>
326 template <
typename S>
334 template <
typename S>
345 template <
typename S>
347 static constexpr
unsigned value =
351 template <
typename S>
353 static constexpr
bool value =
true;
359 template <
typename S>
360 struct IsView< Fad::Exp::GeneralFad<S> > {
364 template <
typename S>
365 struct IsFad< Fad::Exp::GeneralFad<S> > {
366 static constexpr
bool value =
true;
369 template <
typename S>
370 struct IsExpr< Fad::Exp::GeneralFad<S> > {
371 static constexpr
bool value =
true;
374 template <
typename S>
383 #endif // SACADO_FAD_EXP_GENERALFAD_HPP
Wrapper for a generic expression template.
KOKKOS_INLINE_FUNCTION SACADO_ENABLE_VALUE_FUNC(GeneralFad &) operator
Assignment operator with constant right-hand-side.
KOKKOS_DEFAULTED_FUNCTION GeneralFad & operator=(GeneralFad &&x)=default
Move assignment with GeneralFad right-hand-side.
Fad::Exp::GeneralFad< S > type
static KOKKOS_INLINE_FUNCTION void assign_times_equal(DstType &dst, const SrcType &x)
Implementation of dst *= x.
KOKKOS_DEFAULTED_FUNCTION GeneralFad()=default
Default constructor.
Base template specification for whether a type is a Fad type.
KOKKOS_INLINE_FUNCTION void cache() const
Cache values.
KOKKOS_INLINE_FUNCTION GeneralFad(const Expr< S > &x, SACADO_EXP_ENABLE_EXPR_CTOR_DECL)
Copy constructor from any Expression object (disabled for ViewFad)
KOKKOS_INLINE_FUNCTION const derived_type & derived() const
Return derived object.
Turn GeneralFad into a meta-function class usable with mpl::apply.
#define SACADO_EXP_ENABLE_EXPR_CTOR_DECL
Determine whether a given type is an expression.
Wrapper for a generic expression template.
static KOKKOS_INLINE_FUNCTION void assign_equal(DstType &dst, const SrcType &x)
Implementation of dst = x.
Replace static derivative length.
#define KOKKOS_INLINE_FUNCTION
KOKKOS_INLINE_FUNCTION bool updateValue() const
Return whether this Fad object has an updated value.
static KOKKOS_INLINE_FUNCTION void assign_divide_equal(DstType &dst, const SrcType &x)
Implementation of dst /= x.
static KOKKOS_INLINE_FUNCTION void assign_plus_equal(DstType &dst, const SrcType &x)
Implementation of dst += x.
#define KOKKOS_DEFAULTED_FUNCTION
Storage::template apply_N< N >::type S
Determine whether a given type is a view.
Base template specification for testing equivalence.
Forward-mode AD class templated on the storage for the derivative array.
#define SACADO_FAD_DERIV_LOOP(I, SZ)
KOKKOS_INLINE_FUNCTION bool hasFastAccess() const
Returns true if derivative array is not empty.
Get the base Fad type from a view/expression.
Extender< Storage > ExtenderType
Extender type.
Storage StorageType
Storage type.
#define SACADO_EXP_ENABLE_VALUE_CTOR_DECL
KOKKOS_DEFAULTED_FUNCTION ~GeneralFad()=default
Destructor.
T derived_type
Typename of derived object, returned by derived()
KOKKOS_INLINE_FUNCTION void setUpdateValue(bool update_val)
Set whether this Fad object should update values.
Do not initialize the derivative array.
Storage::template apply< T >::type S
ScalarType< value_type >::type scalar_type
Typename of scalar's (which may be different from T)
static constexpr bool is_view
Whether we are a view.
Meta-function for determining nesting with an expression.
KOKKOS_INLINE_FUNCTION int availableSize() const
Returns number of derivative components that can be stored without reallocation.
Expr< GeneralFad< Storage > > ExprType
Expression type.
KOKKOS_INLINE_FUNCTION GeneralFad(const S &x, SACADO_EXP_ENABLE_VALUE_CTOR_DECL)
Constructor with value (disabled for ViewFad)
expr expr expr fastAccessDx(i)) FAD_UNARYOP_MACRO(exp
static KOKKOS_INLINE_FUNCTION void assign_minus_equal(DstType &dst, const SrcType &x)
Implementation of dst -= x.
KOKKOS_INLINE_FUNCTION void diff(const int ith, const int n)
Set GeneralFad object as the ith independent variable.
KOKKOS_INLINE_FUNCTION SACADO_EXP_ENABLE_EXPR_FUNC(bool) isEqualTo(const Expr< S > &xx) const
Returns whether two Fad objects have the same values.
KOKKOS_INLINE_FUNCTION void setIsConstant(bool is_const)
Set whether variable is constant.
Forward-mode AD class templated on the storage for the derivative array.
Extension class for extending interface of its argument.