1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
// SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
// SPDX-FileContributor: 2003-22 Bradley M. Bell
// ----------------------------------------------------------------------------
# include <cppad/cppad.hpp>
// checks that d_ptr points to a double with value 5.0 and then
// frees the double using thread_alloc::return_memory
bool debug_thread_alloc(double *d_ptr)
{ bool ok = true;
ok &= ( *d_ptr == 5.0);
void* v_ptr = reinterpret_cast<void*>(d_ptr);
CppAD::thread_alloc::return_memory(v_ptr);
return ok;
}
// just use ADFun<double> constructor
void debug_adfun_ctor(void)
{
CppAD::vector< CppAD::AD<double> > ax(1), ay(1);
ax[0] = 0.;
CppAD::Independent(ax);
ay[0] = fabs(ax[0]);
CppAD::ADFun<double> f(ax, ay);
return;
}
|