CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
#define CPPAD_BOOL_BINARY (   Base,
  binary_name 
)
Value:
inline bool binary_name ( \
const CppAD::AD<Base> &x, const CppAD::AD<Base> &y) \
{ \
return CppAD::AD<Base>::BinaryBool(binary_name, x, y); \
}
Definition: ad.hpp:34
static bool 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...
Definition: bool_fun.hpp:234

Macro that defines a binary function bool F(AD<Base> x, AD<Base> y) using bool F(Base x, Base y).

Parameters
Basebase for the AD type of arguments to this binary bool valued function.
binary_namename of this binary function; i.e., F.

Definition at line 208 of file bool_fun.hpp.