File: special_functions_test.cpp

package info (click to toggle)
boost 1.27.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,908 kB
  • ctags: 26,546
  • sloc: cpp: 122,225; ansic: 10,956; python: 4,412; sh: 855; yacc: 803; makefile: 257; perl: 165; lex: 90; csh: 6
file content (266 lines) | stat: -rw-r--r-- 10,627 bytes parent folder | download
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
// test file for special_functions.hpp

//  (C) Copyright Hubert Holin 2001. Permission to copy, use, modify, sell and
//  distribute this software is granted provided this copyright notice appears
//  in all copies. This software is provided "as is" without express or implied
//  warranty, and with no claim as to its suitability for any purpose.


#include <algorithm>
#include <iostream>
#include <iomanip>
#include <complex>

#include <boost/math/special_functions/atanh.hpp>
#include <boost/math/special_functions/asinh.hpp>
#include <boost/math/special_functions/acosh.hpp>
#include <boost/math/special_functions/sinc.hpp>
#include <boost/math/special_functions/sinhc.hpp>

#include <boost/config.hpp>
#ifdef BOOST_NO_STDC_NAMESPACE
namespace std {
    using ::abs;
    using ::cosh;
    using ::log;
    using ::sin;
    using ::sinh;
    using ::sqrt;
    using ::tanh;
}
#endif

#define BOOST_INCLUDE_MAIN  // for testing, include rather than link
#include <boost/test/test_tools.hpp>


template<typename T>
T    atanh_error_evaluator(T x)
{
    using    ::std::abs;
    using    ::std::tanh;
    using    ::std::cosh;
        
    using    ::std::numeric_limits;
    
    using    ::boost::math::atanh;
    
    
    static T const    epsilon = numeric_limits<float>::epsilon();
    
    T                y = tanh(x);
    T                z = atanh(y);
    
    T                absolute_error = abs(z-x);
    T                relative_error = absolute_error/(cosh(x)*cosh(x));
    T                scaled_error = relative_error/epsilon;
    
    return(scaled_error);
}


template<typename T>
T    asinh_error_evaluator(T x)
{
    using    ::std::abs;
    using    ::std::sinh;
    using    ::std::cosh;
        
    using    ::std::numeric_limits;
    
    using    ::boost::math::asinh;
    
    
    static T const    epsilon = numeric_limits<float>::epsilon();
    
    T                y = sinh(x);
    T                z = asinh(y);
    
    T                absolute_error = abs(z-x);
    T                relative_error = absolute_error*cosh(x);
    T                scaled_error = relative_error/epsilon;
    
    return(scaled_error);
}


template<typename T>
T    acosh_error_evaluator(T x)
{
    using    ::std::abs;
    using    ::std::sinh;
    using    ::std::cosh;
        
    using    ::std::numeric_limits;
    
    using    ::boost::math::acosh;
    
    
    static T const    epsilon = numeric_limits<float>::epsilon();
    
    T                y = cosh(x);
    T                z = acosh(y);
    
    T                absolute_error = abs(z-abs(x));
    T                relative_error = absolute_error*abs(sinh(x));
    T                scaled_error = relative_error/epsilon;
    
    return(scaled_error);
}


int    test_main(int, char *[])

{
    using    ::std::abs;
    using    ::std::sin;
    using    ::std::log;
    using    ::std::tanh;
    using    ::std::sinh;
    using    ::std::cosh;
        
    using    ::std::numeric_limits;
    
    using    ::boost::math::atanh;
    using    ::boost::math::asinh;
    using    ::boost::math::acosh;
    using    ::boost::math::sinc_pi;
    using    ::boost::math::sinhc_pi;
    
    
    // tests for evaluation by humans
    
    
    
    // tests for evaluation by scripts
    
#define    BOOST_SPECIAL_FUNCTIONS_TEST_ATANH(type)                         \
                                                                            \
    ::std::cout << "Testing atanh in the real domain." << ::std::endl;      \
                                                                            \
    BOOST_TEST(abs(atanh<type>(static_cast<type>(0))) <=                    \
        numeric_limits<type>::epsilon());                                   \
                                                                            \
    BOOST_TEST(abs(atanh<type>(static_cast<type>(3)/5)-                     \
        log(static_cast<type>(2))) <=                                       \
        numeric_limits<type>::epsilon());                                   \
                                                                            \
    BOOST_TEST(abs(atanh<type>(static_cast<type>(-3)/5)+                    \
        log(static_cast<type>(2))) <=                                       \
        numeric_limits<type>::epsilon());                                   \
                                                                            \
    for    (int i = 0; i <= 100; i++)                                       \
    {                                                                       \
        type        x = static_cast<type>(i-50)/static_cast<type>(5);       \
        type        y = tanh(x);                                            \
                                                                            \
        if    (                                                             \
                (abs(y-static_cast<type>(1)) >=                             \
                    numeric_limits<type>::epsilon())&&                      \
                (abs(y+static_cast<type>(1)) >=                             \
                    numeric_limits<type>::epsilon())                        \
            )                                                               \
        {                                                                   \
            BOOST_TEST(atanh_error_evaluator(x) <= static_cast<type>(4));   \
        }                                                                   \
    }
        


#define    BOOST_SPECIAL_FUNCTIONS_TEST_ASINH(type)                     \
                                                                        \
    ::std::cout << "Testing asinh in the real domain." << ::std::endl;  \
                                                                        \
    for    (int i = 0; i <= 100; i++)                                   \
    {                                                                   \
        type    x = static_cast<type>(i-50)/static_cast<type>(5);       \
                                                                        \
        BOOST_TEST(asinh_error_evaluator(x) <= static_cast<type>(4));   \
    }


#define    BOOST_SPECIAL_FUNCTIONS_TEST_ACOSH(type)                     \
                                                                        \
    ::std::cout << "Testing acosh in the real domain." << ::std::endl;  \
                                                                        \
    for    (int i = 0; i <= 100; i++)                                   \
    {                                                                   \
        type    x = static_cast<type>(i-50)/static_cast<type>(5);       \
                                                                        \
        BOOST_TEST(acosh_error_evaluator(x) <= static_cast<type>(4));   \
    }
    
    
#define    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI(type)                       \
                                                                            \
    ::std::cout << "Testing sinc_pi in the real domain." << ::std::endl;    \
                                                                            \
    BOOST_TEST(abs(sinc_pi<type>(static_cast<type>(0))-                     \
        static_cast<type>(1)) <=                                            \
        numeric_limits<type>::epsilon());
    
#define    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI_FOR_C(type)                 \
                                                                            \
    ::std::cout << "Testing sinc_pi in the complex domain." << ::std::endl; \
                                                                            \
    BOOST_TEST(abs(sinc_pi<type>(::std::complex<type>(0, 1))-               \
        ::std::complex<type>(sinh(static_cast<type>(1)))) <=                \
        numeric_limits<type>::epsilon());
    
    
#define    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI(type)                      \
                                                                            \
    ::std::cout << "Testing sinhc_pi in the real domain." << ::std::endl;   \
                                                                            \
    BOOST_TEST(abs(sinhc_pi<type>(static_cast<type>(0))-                    \
        static_cast<type>(1)) <=                                            \
        numeric_limits<type>::epsilon());
    
#define    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI_FOR_C(type)                \
                                                                            \
    ::std::cout << "Testing sinhc_pi in the complex domain." << ::std::endl;\
                                                                            \
    BOOST_TEST(abs(sinhc_pi<type>(::std::complex<type>(0, 1))-              \
        ::std::complex<type>(sin(static_cast<type>(1)))) <=                 \
        numeric_limits<type>::epsilon());
    
    
#if defined(__GNUC__) || defined(__COMO__) || \
    (defined(__MWERKS__) && (__MWERKS__ <= 0x2301))
#define    BOOST_SPECIAL_FUNCTIONS_TEST(type)               \
    ::std::cout << "Testing " << #type << "." << std::endl; \
    BOOST_SPECIAL_FUNCTIONS_TEST_ATANH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_ASINH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_ACOSH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI(type)              \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI(type)
#else
#define    BOOST_SPECIAL_FUNCTIONS_TEST(type)               \
    ::std::cout << "Testing " << #type << "." << std::endl; \
    BOOST_SPECIAL_FUNCTIONS_TEST_ATANH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_ASINH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_ACOSH(type)                \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI(type)              \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI(type)             \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI_FOR_C(type)        \
    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI_FOR_C(type)
#endif
    
    
    BOOST_SPECIAL_FUNCTIONS_TEST(float)
    BOOST_SPECIAL_FUNCTIONS_TEST(double)
    BOOST_SPECIAL_FUNCTIONS_TEST(long double)
    
    
#undef    BOOST_SPECIAL_FUNCTIONS_TEST

#undef    BOOST_SPECIAL_FUNCTIONS_TEST_ATANH
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_ASINH
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_ACOSH
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_SINC_PI_FOR_C
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI
#undef    BOOST_SPECIAL_FUNCTIONS_TEST_SINHC_PI_FOR_C
    
    return(::boost::exit_success);
}