CppAD: A C++ Algorithmic Differentiation Package  20130918
#define CPPAD_COND_EXP_REL (   Type)
Value:
CPPAD_COND_EXP_BASE_REL(Type, Lt, CompareLt)     \
     CPPAD_COND_EXP_BASE_REL(Type, Le, CompareLe)     \
     CPPAD_COND_EXP_BASE_REL(Type, Eq, CompareEq)     \
     CPPAD_COND_EXP_BASE_REL(Type, Ge, CompareGe)     \
     CPPAD_COND_EXP_BASE_REL(Type, Gt, CompareGt)

The macro defines the operations.

	CondExpLt(left, right, exp_if_true, exp_if_false)
	CondExpLe(left, right, exp_if_true, exp_if_false)
	CondExpEq(left, right, exp_if_true, exp_if_false)
	CondExpGe(left, right, exp_if_true, exp_if_false)
	CondExpGt(left, right, exp_if_true, exp_if_false)

The argument Type is the Base type for this base require operation.

Definition at line 194 of file base_cond_exp.hpp.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines