CppAD: A C++ Algorithmic Differentiation Package
20130102
|
#define CPPAD_TAPE_ADDR_TYPE unsigned int |
Is the type used to store address on the tape.
If not size_t, then sizeof(CPPAD_TAPE_ADDR_TYPE) <= sizeof( size_t )
to conserve memory. This type must support std::numeric_limits
, the <=
operator, and conversion to size_t
. Make sure that the type chosen returns true for is_pod<CPPAD_TAPE_ADDR_TYPE> in pod_vector.hpp. This type is later defined as addr_t
in the CppAD namespace.
Definition at line 119 of file configure.hpp.