]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/test/concepts/sf_concept_check_beta_3.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / multiprecision / test / concepts / sf_concept_check_beta_3.cpp
1 // Copyright John Maddock 2012.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 //
7 // This tests that cpp_dec_float_50 meets our
8 // conceptual requirements when used with Boost.Math.
9 //
10 #ifdef _MSC_VER
11 #define _SCL_SECURE_NO_WARNINGS
12 #pragma warning(disable : 4800)
13 #pragma warning(disable : 4512)
14 #pragma warning(disable : 4127)
15 #pragma warning(disable : 4512)
16 #pragma warning(disable : 4503) // decorated name length exceeded, name was truncated
17 #endif
18
19 #include <boost/container_hash/hash.hpp>
20 #include <libs/math/test/compile_test/poison.hpp>
21
22 #if !defined(TEST_MPF_50) && !defined(TEST_BACKEND) && !defined(TEST_MPZ) && !defined(TEST_CPP_DEC_FLOAT) && !defined(TEST_MPFR_50) && !defined(TEST_MPFR_6) && !defined(TEST_MPFR_15) && !defined(TEST_MPFR_17) && !defined(TEST_MPFR_30) && !defined(TEST_CPP_DEC_FLOAT_NO_ET) && !defined(TEST_LOGGED_ADAPTER) && !defined(TEST_CPP_BIN_FLOAT)
23 #define TEST_MPF_50
24 #define TEST_BACKEND
25 #define TEST_MPZ
26 #define TEST_MPFR_50
27 #define TEST_MPFR_6
28 #define TEST_MPFR_15
29 #define TEST_MPFR_17
30 #define TEST_MPFR_30
31 #define TEST_CPP_DEC_FLOAT
32 #define TEST_CPP_DEC_FLOAT_NO_ET
33 #define TEST_LOGGED_ADAPTER
34 #define TEST_CPP_BIN_FLOAT
35
36 #ifdef _MSC_VER
37 #pragma message("CAUTION!!: No backend type specified so testing everything.... this will take some time!!")
38 #endif
39 #ifdef __GNUC__
40 #pragma warning "CAUTION!!: No backend type specified so testing everything.... this will take some time!!"
41 #endif
42
43 #endif
44
45 #if defined(TEST_MPF_50) || defined(TEST_MPZ)
46 #include <boost/multiprecision/gmp.hpp>
47 #endif
48 #ifdef TEST_BACKEND
49 #include <boost/multiprecision/concepts/mp_number_archetypes.hpp>
50 #endif
51 #if defined(TEST_CPP_DEC_FLOAT) || defined(TEST_CPP_DEC_FLOAT_NO_ET) || defined(TEST_LOGGED_ADAPTER)
52 #include <boost/multiprecision/cpp_dec_float.hpp>
53 #endif
54 #if defined(TEST_MPFR_50) || defined(TEST_MPFR_6) || defined(TEST_MPFR_15) || defined(TEST_MPFR_17) || defined(TEST_MPFR_30)
55 #include <boost/multiprecision/mpfr.hpp>
56 #endif
57 #if defined(TEST_CPP_BIN_FLOAT)
58 #include <boost/multiprecision/cpp_bin_float.hpp>
59 #endif
60 #ifdef TEST_LOGGED_ADAPTER
61 #include <boost/multiprecision/logged_adaptor.hpp>
62 #endif
63
64 #include <boost/math/special_functions.hpp>
65
66 template <class T>
67 void test_extra(T)
68 {
69 T v1, v2, v3;
70 boost::math::ibeta_inva(v1, v2, v3);
71 boost::math::ibetac_inva(v1, v2, v3);
72 boost::math::ibeta_invb(v1, v2, v3);
73 boost::math::ibetac_invb(v1, v2, v3);
74 }
75
76 void foo()
77 {
78 #ifdef TEST_BACKEND
79 test_extra(boost::multiprecision::concepts::mp_number_float_architype());
80 #endif
81 #ifdef TEST_MPF_50
82 test_extra(boost::multiprecision::mpf_float_50());
83 #endif
84 #ifdef TEST_MPFR_50
85 test_extra(boost::multiprecision::mpfr_float_50());
86 #endif
87 #ifdef TEST_MPFR_6
88 test_extra(boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<6> >());
89 #endif
90 #ifdef TEST_MPFR_15
91 test_extra(boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<15> >());
92 #endif
93 #ifdef TEST_MPFR_17
94 test_extra(boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<17> >());
95 #endif
96 #ifdef TEST_MPFR_30
97 test_extra(boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<30> >());
98 #endif
99 #ifdef TEST_CPP_DEC_FLOAT
100 test_extra(boost::multiprecision::cpp_dec_float_50());
101 #endif
102 #ifdef TEST_CPP_BIN_FLOAT
103 test_extra(boost::multiprecision::cpp_bin_float_50());
104 #endif
105 #ifdef TEST_CPP_DEC_FLOAT_NO_ET
106 test_extra(boost::multiprecision::number<boost::multiprecision::cpp_dec_float<100>, boost::multiprecision::et_off>());
107 #endif
108 #ifdef TEST_LOGGED_ADAPTER
109 typedef boost::multiprecision::number<boost::multiprecision::logged_adaptor<boost::multiprecision::cpp_dec_float<50> > > num_t;
110 test_extra(num_t());
111 #endif
112 }
113
114 int main()
115 {
116 foo();
117 }