Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / test / math / test_hermite.cpp
1 ///////////////////////////////////////////////////////////////
2 //  Copyright 2011 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
5
6 #include "setup.hpp"
7 #include "table_type.hpp"
8 #define TEST_UDT
9
10 #include <boost/math/special_functions/math_fwd.hpp>
11 #include "libs/math/test/test_hermite.hpp"
12
13 void expected_results()
14 {
15    //
16    // Define the max and mean errors expected for
17    // various compilers and platforms.
18    //
19 #ifdef BOOST_INTEL
20    add_expected_result(
21        ".*",               // compiler
22        ".*",               // stdlib
23        ".*",               // platform
24        "float128",         // test type(s)
25        ".*",               // test data group
26        "hermite", 70, 25); // test function
27 #endif
28    add_expected_result(
29        ".*",              // compiler
30        ".*",              // stdlib
31        ".*",              // platform
32        ".*",              // test type(s)
33        ".*",              // test data group
34        "hermite", 10, 5); // test function
35    //
36    // Finish off by printing out the compiler/stdlib/platform names,
37    // we do this to make it easier to mark up expected error rates.
38    //
39    std::cout << "Tests run with " << BOOST_COMPILER << ", "
40              << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
41 }
42
43 template <class T>
44 void test(T t, const char* p)
45 {
46    test_hermite(t, p);
47 }
48
49 BOOST_AUTO_TEST_CASE(test_main)
50 {
51    using namespace boost::multiprecision;
52    expected_results();
53    //
54    // Test at:
55    // 18 decimal digits: tests 80-bit long double approximations
56    // 30 decimal digits: tests 128-bit long double approximations
57    // 35 decimal digits: tests arbitrary precision code
58    //
59    ALL_TESTS
60 }