|
Sacado Package Browser (Single Doxygen Collection) Version of the Day
|
#include "Sacado_CacheFad_Expression.hpp"#include "Sacado_cmath.hpp"#include "Sacado_dummy_arg.hpp"#include <ostream>

Go to the source code of this file.
Classes | |
| class | Sacado::CacheFad::UnaryPlusOp< ExprT > |
| class | Sacado::CacheFad::Expr< UnaryPlusOp< ExprT > > |
| class | Sacado::CacheFad::UnaryMinusOp< ExprT > |
| class | Sacado::CacheFad::Expr< UnaryMinusOp< ExprT > > |
| class | Sacado::CacheFad::AbsOp< ExprT > |
| class | Sacado::CacheFad::Expr< AbsOp< ExprT > > |
| class | Sacado::CacheFad::FAbsOp< ExprT > |
| class | Sacado::CacheFad::Expr< FAbsOp< ExprT > > |
Namespaces | |
| namespace | Sacado |
Abstract class that provides access to a parameter value in a code for the parameter library. An object of this type is required to construct a ParameterRegistration object. | |
| namespace | Sacado::CacheFad |
Namespace for forward-mode AD classes w/caching. | |
Defines | |
| #define | FAD_UNARYOP_MACRO(OPNAME, OP, PARTIAL, VALUE) |
| #define | FAD_BINARYOP_MACRO(OPNAME, OP) |
| #define | FAD_RELOP_MACRO(OP) |
| #define | FAD_BOOL_MACRO(OP) |
Functions | |
| template<typename T > | |
| Expr< UnaryPlusOp< Expr< T > > > | Sacado::CacheFad::operator+ (const Expr< T > &expr) |
| template<typename T > | |
| Expr< UnaryMinusOp< Expr< T > > > | Sacado::CacheFad::operator- (const Expr< T > &expr) |
| template<typename T > | |
| Expr< AbsOp< Expr< T > > > | Sacado::CacheFad::abs (const Expr< T > &expr) |
| template<typename T > | |
| Expr< FAbsOp< Expr< T > > > | Sacado::CacheFad::fabs (const Expr< T > &expr) |
| FAD_UNARYOP_MACRO (exp, ExpOp, a=std::exp(v), a) FAD_UNARYOP_MACRO(log | |
| template<typename ExprT > | |
| bool | Sacado::CacheFad::operator! (const Expr< ExprT > &expr) |
| template<typename ExprT > | |
| bool | Sacado::CacheFad::toBool (const Expr< ExprT > &x) |
| template<typename ExprT > | |
| std::ostream & | Sacado::CacheFad::operator<< (std::ostream &os, const Expr< ExprT > &x) |
Variables | |
| LogOp | |
| a = value_type(1)/v | |
| Log10Op | |
| SqrtOp | |
| CosOp | |
| SinOp | |
| TanOp | |
| ACosOp | |
| ASinOp | |
| ATanOp | |
| CoshOp | |
| SinhOp | |
| TanhOp | |
| ACoshOp | |
| ASinhOp | |
| ATanhOp | |
| #define FAD_UNARYOP_MACRO | ( | OPNAME, | |
| OP, | |||
| PARTIAL, | |||
| VALUE | |||
| ) |
Definition at line 311 of file Sacado_CacheFad_Ops.hpp.
| #define FAD_BINARYOP_MACRO | ( | OPNAME, | |
| OP | |||
| ) |
Definition at line 2039 of file Sacado_CacheFad_Ops.hpp.
| #define FAD_RELOP_MACRO | ( | OP | ) |
namespace Sacado { \ namespace CacheFad { \ template <typename ExprT1, typename ExprT2> \ inline bool \ operator OP (const Expr<ExprT1>& expr1, \ const Expr<ExprT2>& expr2) \ { \ return expr1.val() OP expr2.val(); \ } \ \ template <typename ExprT2> \ inline bool \ operator OP (const typename Expr<ExprT2>::value_type& a, \ const Expr<ExprT2>& expr2) \ { \ return a OP expr2.val(); \ } \ \ template <typename ExprT1> \ inline bool \ operator OP (const Expr<ExprT1>& expr1, \ const typename Expr<ExprT1>::value_type& b) \ { \ return expr1.val() OP b; \ } \ } \ }
Definition at line 2101 of file Sacado_CacheFad_Ops.hpp.
| #define FAD_BOOL_MACRO | ( | OP | ) |
namespace Sacado { \ namespace CacheFad { \ template <typename ExprT1, typename ExprT2> \ inline bool \ operator OP (const Expr<ExprT1>& expr1, \ const Expr<ExprT2>& expr2) \ { \ return toBool(expr1) OP toBool(expr2); \ } \ \ template <typename ExprT2> \ inline bool \ operator OP (const typename Expr<ExprT2>::value_type& a, \ const Expr<ExprT2>& expr2) \ { \ return a OP toBool(expr2); \ } \ \ template <typename ExprT1> \ inline bool \ operator OP (const Expr<ExprT1>& expr1, \ const typename Expr<ExprT1>::value_type& b) \ { \ return toBool(expr1) OP b; \ } \ } \ }
Definition at line 2174 of file Sacado_CacheFad_Ops.hpp.
Definition at line 376 of file Sacado_CacheFad_Ops.hpp.
| a = value_type(1)/v |
Definition at line 377 of file Sacado_CacheFad_Ops.hpp.
Definition at line 380 of file Sacado_CacheFad_Ops.hpp.
Definition at line 384 of file Sacado_CacheFad_Ops.hpp.
Definition at line 388 of file Sacado_CacheFad_Ops.hpp.
Definition at line 392 of file Sacado_CacheFad_Ops.hpp.
Definition at line 396 of file Sacado_CacheFad_Ops.hpp.
Definition at line 400 of file Sacado_CacheFad_Ops.hpp.
Definition at line 404 of file Sacado_CacheFad_Ops.hpp.
Definition at line 408 of file Sacado_CacheFad_Ops.hpp.
Definition at line 412 of file Sacado_CacheFad_Ops.hpp.
Definition at line 416 of file Sacado_CacheFad_Ops.hpp.
Definition at line 420 of file Sacado_CacheFad_Ops.hpp.
Definition at line 424 of file Sacado_CacheFad_Ops.hpp.
Definition at line 428 of file Sacado_CacheFad_Ops.hpp.
Definition at line 432 of file Sacado_CacheFad_Ops.hpp.
1.7.4