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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// 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
// ----------------------------------------------------------------------------
/*
{xrst_begin exp_apx.cpp}
Correctness Tests For Exponential Approximation in Introduction
###############################################################
Running Tests
*************
To build this program and run its correctness tests see :ref:`cmake_check-name` .
Source
******
{xrst_literal
// BEGIN C++
// END C++
}
{xrst_end exp_apx.cpp}
*/
// BEGIN C++
// system include files used for I/O
# include <iostream>
// memory allocation routine
# include <cppad/utility/thread_alloc.hpp>
// test runner
# include <cppad/utility/test_boolofvoid.hpp>
// external complied tests
extern bool exp_2(void);
extern bool exp_2_cppad(void);
extern bool exp_2_for1(void);
extern bool exp_2_for2(void);
extern bool exp_2_rev1(void);
extern bool exp_2_rev2(void);
extern bool exp_2_for0(void);
extern bool exp_eps(void);
extern bool exp_eps_cppad(void);
extern bool exp_eps_for1(void);
extern bool exp_eps_for2(void);
extern bool exp_eps_for0(void);
extern bool exp_eps_rev1(void);
extern bool exp_eps_rev2(void);
// main program that runs all the tests
int main(void)
{ std::string group = "introduction";
size_t width = 20;
CppAD::test_boolofvoid Run(group, width);
// This comment is used by OneTest
// external compiled tests
Run( exp_2, "exp_2" );
Run( exp_2_cppad, "exp_2_cppad" );
Run( exp_2_for0, "exp_2_for0" );
Run( exp_2_for1, "exp_2_for1" );
Run( exp_2_for2, "exp_2_for2" );
Run( exp_2_rev1, "exp_2_rev1" );
Run( exp_2_rev2, "exp_2_rev2" );
Run( exp_eps, "exp_eps" );
Run( exp_eps_cppad, "exp_eps_cppad" );
Run( exp_eps_for0, "exp_eps_for0" );
Run( exp_eps_for1, "exp_eps_for1" );
Run( exp_eps_for2, "exp_eps_for2" );
Run( exp_eps_rev1, "exp_eps_rev1" );
Run( exp_eps_rev2, "exp_eps_rev2" );
//
// 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 );
}
// END C++
|