CppAD: A C++ Algorithmic Differentiation Package  20171217
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
#define CPPAD_ZDOUBLE_NORMAL_BINARY_OPERATOR (   op)
Value:
zdouble operator op (const zdouble& z) const \
{ return zdouble( dbl_ op z.dbl_ ); } \
zdouble operator op (const double& x) const \
{ return zdouble( dbl_ op x ); }

define CPPAD_ZDOUBLE_NORMAL_BINARY_OPERATOR(op)

Define a binary arithmetic member operator that functions the same as corresponding double operator.

Definition at line 169 of file zdouble.hpp.