]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/test/math/test_ellint_3.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / multiprecision / test / math / test_ellint_3.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 http://www.boost.org/LICENSE_1_
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_ellint_3.hpp"
12
13 void expected_results()
14 {
15 //
16 // Define the max and mean errors expected for
17 // various compilers and platforms.
18 //
19 add_expected_result(
20 ".*", // compiler
21 ".*", // stdlib
22 ".*", // platform
23 ".*gmp_float<18>.*", // test type(s)
24 ".*", // test data group
25 ".*", 3000, 500); // test function
26 add_expected_result(
27 ".*", // compiler
28 ".*", // stdlib
29 ".*", // platform
30 ".*mpfr_float_backend<18>.*", // test type(s)
31 ".*", // test data group
32 ".*", 10000, 3000); // test function
33 add_expected_result(
34 ".*", // compiler
35 ".*", // stdlib
36 ".*", // platform
37 ".*mpfr_float_backend<0>.*", // test type(s)
38 ".*Mathworld.*", // test data group
39 ".*", 10000, 3000); // test function
40 add_expected_result(
41 ".*", // compiler
42 ".*", // stdlib
43 ".*", // platform
44 ".*gmp_float<0>.*", // test type(s)
45 ".*", // test data group
46 ".*", 10000, 1200); // test function
47 add_expected_result(
48 ".*", // compiler
49 ".*", // stdlib
50 ".*", // platform
51 ".*", // test type(s)
52 ".*Large.*", // test data group
53 ".*", 75, 40); // test function
54 add_expected_result(
55 ".*", // compiler
56 ".*", // stdlib
57 ".*", // platform
58 ".*cpp_bin_float_quad.*", // test type(s)
59 ".*Mathworld.*", // test data group
60 ".*", 500, 100); // test function
61 #ifdef BOOST_INTEL
62 add_expected_result(
63 ".*", // compiler
64 ".*", // stdlib
65 ".*", // platform
66 ".*float128.*", // test type(s)
67 ".*", // test data group
68 ".*", 200, 30); // test function
69 #endif
70 add_expected_result(
71 ".*", // compiler
72 ".*", // stdlib
73 ".*", // platform
74 ".*", // test type(s)
75 ".*Mathworld.*", // test data group
76 ".*", 600, 300); // test function
77 add_expected_result(
78 ".*", // compiler
79 ".*", // stdlib
80 ".*", // platform
81 ".*", // test type(s)
82 ".*", // test data group
83 ".*", 60, 30); // test function
84 //
85 // Finish off by printing out the compiler/stdlib/platform names,
86 // we do this to make it easier to mark up expected error rates.
87 //
88 std::cout << "Tests run with " << BOOST_COMPILER << ", "
89 << BOOST_STDLIB << ", " << BOOST_PLATFORM << std::endl;
90 }
91
92 template <class T>
93 void test(T t, const char* p)
94 {
95 test_spots(t, p);
96 }
97
98 BOOST_AUTO_TEST_CASE( test_main )
99 {
100 using namespace boost::multiprecision;
101 expected_results();
102 //
103 // Test at:
104 // 18 decimal digits: tests 80-bit long double approximations
105 // 30 decimal digits: tests 128-bit long double approximations
106 // 35 decimal digits: tests arbitrary precision code
107 //
108 ALL_TESTS
109 }
110