CppAD: A C++ Algorithmic Differentiation Package 20110419
#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);   \
     }

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 218 of file bool_fun.hpp.