chkpoint_two.cpp

View page source

chkpoint_two Examples and Tests Driver

Running These Tests

After executing the cmake command form the Distribution Directory, you can build and run these tests with the commands:

cd build
make check_example_chkpoint_two

Note that your choice of generator may require using an different version of make; e.g., ninja .

// CPPAD_HAS_* defines
# include <cppad/configure.hpp>

// for thread_alloc
# include <cppad/utility/thread_alloc.hpp>

// test runner
# include <cppad/utility/test_boolofvoid.hpp>

// external complied tests
extern bool base2ad(void);
extern bool compare(void);
extern bool dynamic(void);
extern bool get_started(void);
extern bool ode(void);

// main program that runs all the tests
int main(void)
{  std::string group = "example/chkpoint_two";
   size_t      width = 20;
   CppAD::test_boolofvoid Run(group, width);

   // This line is used by test_one.sh

   // external compiled tests
   Run( base2ad,             "base2ad"        );
   Run( compare,             "compare"        );
   Run( dynamic,             "dynamic"        );
   Run( get_started,         "get_started"    );
   Run( ode,                 "ode"            );
   //
   // check for memory leak
   bool memory_ok = CppAD::thread_alloc::free_all();
   // print summary at end
   bool ok = Run.summary(memory_ok);
   //
   return static_cast<int>( ! ok );
}