CppAD: A C++ Algorithmic Differentiation Package
20130102
|
Files | |
file | bool_fun.hpp |
Routines and macros that implement functions from AD<Base> to bool bool_fun.hpp. | |
Defines | |
#define | CPPAD_BOOL_UNARY(Base, unary_name) |
Macro that defines a unary function bool F(AD<Base> x) using bool F(Base x) . | |
#define | CppADCreateUnaryBool CPPAD_BOOL_UNARY |
Deprecated name for CPPAD_BOOL_UNARY. | |
#define | CPPAD_BOOL_BINARY(Base, binary_name) |
Macro that defines a binary function bool F(AD<Base> x, AD<Base> y) using bool F(Base x, Base y) . | |
#define | CppADCreateBinaryBool CPPAD_BOOL_BINARY |
Deprecated name for CPPAD_BOOL_BINARY. | |
Functions | |
static bool | AD< Base >::UnaryBool (bool FunName(const Base &x), const AD< Base > &x) |
Link a function name, and AD value pair to function call with base argument and bool retrun value. | |
static bool | AD< Base >::BinaryBool (bool FunName(const Base &x, const Base &y), const AD< Base > &x, const AD< Base > &y) |
Link a function name, and two AD values to function call with base arguments and bool retrun value. |