]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/test/compile_test/instantiate.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / instantiate.hpp
CommitLineData
7c673cae
FG
1// Copyright John Maddock 2006.
2// Copyright Paul A. Bristow 2007, 2010.
3// Use, modification and distribution are subject to the
4// Boost Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7#ifndef BOOST_LIBS_MATH_TEST_INSTANTIATE_HPP
8#define BOOST_LIBS_MATH_TEST_INSTANTIATE_HPP
9
10#ifndef BOOST_MATH_ASSERT_UNDEFINED_POLICY
11# define BOOST_MATH_ASSERT_UNDEFINED_POLICY false
12#endif
13
14#include <boost/math/distributions.hpp>
15
16#include <boost/math/special_functions.hpp>
17#include <boost/math/concepts/distributions.hpp>
18#include <boost/concept_archetype.hpp>
19
20#ifndef BOOST_MATH_INSTANTIATE_MINIMUM
21
22typedef boost::math::policies::policy<boost::math::policies::promote_float<false>, boost::math::policies::promote_double<false> > test_policy;
23
24namespace test{
25
26BOOST_MATH_DECLARE_SPECIAL_FUNCTIONS(test_policy)
27
28}
29
30namespace dist_test{
31
32BOOST_MATH_DECLARE_DISTRIBUTIONS(double, test_policy)
33
34}
35#endif
36
37#if !defined(TEST_GROUP_1) && !defined(TEST_GROUP_2) && !defined(TEST_GROUP_3) \
38 && !defined(TEST_GROUP_4) && !defined(TEST_GROUP_5) && !defined(TEST_GROUP_6) \
39 && !defined(TEST_GROUP_7) && !defined(TEST_GROUP_8) && !defined(TEST_GROUP_9)
40# define TEST_GROUP_1
41# define TEST_GROUP_2
42# define TEST_GROUP_3
43# define TEST_GROUP_4
44# define TEST_GROUP_5
45# define TEST_GROUP_6
46# define TEST_GROUP_7
47# define TEST_GROUP_8
48# define TEST_GROUP_9
49#endif
50
51template <class RealType>
52void instantiate(RealType)
53{
54 using namespace boost;
55 using namespace boost::math;
56 using namespace boost::math::concepts;
57#ifdef TEST_GROUP_1
58 function_requires<DistributionConcept<arcsine_distribution<RealType> > >();
59 function_requires<DistributionConcept<bernoulli_distribution<RealType> > >();
60 function_requires<DistributionConcept<beta_distribution<RealType> > >();
61 function_requires<DistributionConcept<binomial_distribution<RealType> > >();
62 function_requires<DistributionConcept<cauchy_distribution<RealType> > >();
63 function_requires<DistributionConcept<chi_squared_distribution<RealType> > >();
64 function_requires<DistributionConcept<exponential_distribution<RealType> > >();
65 function_requires<DistributionConcept<extreme_value_distribution<RealType> > >();
66 function_requires<DistributionConcept<fisher_f_distribution<RealType> > >();
67 function_requires<DistributionConcept<gamma_distribution<RealType> > >();
68 function_requires<DistributionConcept<geometric_distribution<RealType> > >();
69 function_requires<DistributionConcept<hypergeometric_distribution<RealType> > >();
70 function_requires<DistributionConcept<hyperexponential_distribution<RealType> > >();
71 function_requires<DistributionConcept<inverse_chi_squared_distribution<RealType> > >();
72 function_requires<DistributionConcept<inverse_gamma_distribution<RealType> > >();
73 function_requires<DistributionConcept<inverse_gaussian_distribution<RealType> > >();
74 function_requires<DistributionConcept<laplace_distribution<RealType> > >();
75 function_requires<DistributionConcept<logistic_distribution<RealType> > >();
76 function_requires<DistributionConcept<lognormal_distribution<RealType> > >();
77 function_requires<DistributionConcept<negative_binomial_distribution<RealType> > >();
78 function_requires<DistributionConcept<non_central_chi_squared_distribution<RealType> > >();
79 function_requires<DistributionConcept<non_central_beta_distribution<RealType> > >();
80 function_requires<DistributionConcept<non_central_f_distribution<RealType> > >();
81 function_requires<DistributionConcept<non_central_t_distribution<RealType> > >();
82 function_requires<DistributionConcept<normal_distribution<RealType> > >();
83 function_requires<DistributionConcept<pareto_distribution<RealType> > >();
84 function_requires<DistributionConcept<poisson_distribution<RealType> > >();
85 function_requires<DistributionConcept<rayleigh_distribution<RealType> > >();
86 function_requires<DistributionConcept<students_t_distribution<RealType> > >();
87 function_requires<DistributionConcept<skew_normal_distribution<RealType> > >();
88 function_requires<DistributionConcept<triangular_distribution<RealType> > >();
89 function_requires<DistributionConcept<uniform_distribution<RealType> > >();
90 function_requires<DistributionConcept<weibull_distribution<RealType> > >();
91#endif
92#ifndef BOOST_MATH_INSTANTIATE_MINIMUM
93#ifdef TEST_GROUP_2
94 function_requires<DistributionConcept<arcsine_distribution<RealType> > >();
95 function_requires<DistributionConcept<bernoulli_distribution<RealType, test_policy> > >();
96 function_requires<DistributionConcept<beta_distribution<RealType, test_policy> > >();
97 function_requires<DistributionConcept<binomial_distribution<RealType, test_policy> > >();
98 function_requires<DistributionConcept<cauchy_distribution<RealType, test_policy> > >();
99 function_requires<DistributionConcept<chi_squared_distribution<RealType, test_policy> > >();
100 function_requires<DistributionConcept<exponential_distribution<RealType, test_policy> > >();
101 function_requires<DistributionConcept<extreme_value_distribution<RealType, test_policy> > >();
102 function_requires<DistributionConcept<fisher_f_distribution<RealType, test_policy> > >();
103 function_requires<DistributionConcept<gamma_distribution<RealType, test_policy> > >();
104 function_requires<DistributionConcept<geometric_distribution<RealType, test_policy> > >();
105 function_requires<DistributionConcept<hypergeometric_distribution<RealType, test_policy> > >();
106 function_requires<DistributionConcept<inverse_chi_squared_distribution<RealType, test_policy> > >();
107 function_requires<DistributionConcept<inverse_gamma_distribution<RealType, test_policy> > >();
108 function_requires<DistributionConcept<inverse_gaussian_distribution<RealType, test_policy> > >();
109 function_requires<DistributionConcept<laplace_distribution<RealType, test_policy> > >();
110 function_requires<DistributionConcept<logistic_distribution<RealType, test_policy> > >();
111 function_requires<DistributionConcept<lognormal_distribution<RealType, test_policy> > >();
112 function_requires<DistributionConcept<negative_binomial_distribution<RealType, test_policy> > >();
113 function_requires<DistributionConcept<non_central_chi_squared_distribution<RealType, test_policy> > >();
114 function_requires<DistributionConcept<non_central_beta_distribution<RealType, test_policy> > >();
115 function_requires<DistributionConcept<non_central_f_distribution<RealType, test_policy> > >();
116 function_requires<DistributionConcept<non_central_t_distribution<RealType, test_policy> > >();
117 function_requires<DistributionConcept<normal_distribution<RealType, test_policy> > >();
118 function_requires<DistributionConcept<pareto_distribution<RealType, test_policy> > >();
119 function_requires<DistributionConcept<poisson_distribution<RealType, test_policy> > >();
120 function_requires<DistributionConcept<rayleigh_distribution<RealType, test_policy> > >();
121 function_requires<DistributionConcept<skew_normal_distribution<RealType, test_policy> > >();
122 function_requires<DistributionConcept<students_t_distribution<RealType, test_policy> > >();
123 function_requires<DistributionConcept<triangular_distribution<RealType, test_policy> > >();
124 function_requires<DistributionConcept<uniform_distribution<RealType, test_policy> > >();
125 function_requires<DistributionConcept<weibull_distribution<RealType, test_policy> > >();
126#endif
127#ifdef TEST_GROUP_3
128 function_requires<DistributionConcept<dist_test::arcsine > >();
129 function_requires<DistributionConcept<dist_test::bernoulli > >();
130 function_requires<DistributionConcept<dist_test::beta > >();
131 function_requires<DistributionConcept<dist_test::binomial > >();
132 function_requires<DistributionConcept<dist_test::cauchy > >();
133 function_requires<DistributionConcept<dist_test::chi_squared > >();
134 function_requires<DistributionConcept<dist_test::exponential > >();
135 function_requires<DistributionConcept<dist_test::extreme_value > >();
136 function_requires<DistributionConcept<dist_test::fisher_f > >();
137 function_requires<DistributionConcept<dist_test::gamma > >();
138 function_requires<DistributionConcept<dist_test::geometric > >();
139 function_requires<DistributionConcept<dist_test::hypergeometric > >();
140 function_requires<DistributionConcept<dist_test::inverse_chi_squared > >();
141 function_requires<DistributionConcept<dist_test::inverse_gamma > >();
142 function_requires<DistributionConcept<dist_test::inverse_gaussian > >();
143 function_requires<DistributionConcept<dist_test::laplace > >();
144 function_requires<DistributionConcept<dist_test::logistic > >();
145 function_requires<DistributionConcept<dist_test::lognormal > >();
146 function_requires<DistributionConcept<dist_test::negative_binomial > >();
147 function_requires<DistributionConcept<dist_test::non_central_chi_squared > >();
148 function_requires<DistributionConcept<dist_test::non_central_beta > >();
149 function_requires<DistributionConcept<dist_test::non_central_f > >();
150 function_requires<DistributionConcept<dist_test::non_central_t > >();
151 function_requires<DistributionConcept<dist_test::normal > >();
152 function_requires<DistributionConcept<dist_test::pareto > >();
153 function_requires<DistributionConcept<dist_test::poisson > >();
154 function_requires<DistributionConcept<dist_test::rayleigh > >();
155 function_requires<DistributionConcept<dist_test::students_t > >();
156 function_requires<DistributionConcept<dist_test::triangular > >();
157 function_requires<DistributionConcept<dist_test::uniform > >();
158 function_requires<DistributionConcept<dist_test::weibull > >();
159 function_requires<DistributionConcept<dist_test::hypergeometric > >();
160#endif
161#endif
b32b8144
FG
162 int i = 1;
163 // Deal with unused variable warnings:
164 (void)i;
7c673cae
FG
165 RealType v1(0.5), v2(0.5), v3(0.5);
166 boost::detail::dummy_constructor dc;
167 boost::output_iterator_archetype<RealType> oi(dc);
168#ifdef TEST_GROUP_4
169 boost::math::tgamma(v1);
170 boost::math::tgamma1pm1(v1);
171 boost::math::lgamma(v1);
172 boost::math::lgamma(v1, &i);
173 boost::math::digamma(v1);
174 boost::math::trigamma(v1);
175 boost::math::polygamma(i, v1);
176 boost::math::tgamma_ratio(v1, v2);
177 boost::math::tgamma_delta_ratio(v1, v2);
178 boost::math::factorial<RealType>(i);
179 boost::math::unchecked_factorial<RealType>(i);
180 i = boost::math::max_factorial<RealType>::value;
181 boost::math::double_factorial<RealType>(i);
182 boost::math::rising_factorial(v1, i);
183 boost::math::falling_factorial(v1, i);
184 boost::math::tgamma(v1, v2);
185 boost::math::tgamma_lower(v1, v2);
186 boost::math::gamma_p(v1, v2);
187 boost::math::gamma_q(v1, v2);
188 boost::math::gamma_p_inv(v1, v2);
189 boost::math::gamma_q_inv(v1, v2);
190 boost::math::gamma_p_inva(v1, v2);
191 boost::math::gamma_q_inva(v1, v2);
192 boost::math::erf(v1);
193 boost::math::erfc(v1);
194 boost::math::erf_inv(v1);
195 boost::math::erfc_inv(v1);
196 boost::math::beta(v1, v2);
197 boost::math::beta(v1, v2, v3);
198 boost::math::betac(v1, v2, v3);
199 boost::math::ibeta(v1, v2, v3);
200 boost::math::ibetac(v1, v2, v3);
201 boost::math::ibeta_inv(v1, v2, v3);
202 boost::math::ibetac_inv(v1, v2, v3);
203 boost::math::ibeta_inva(v1, v2, v3);
204 boost::math::ibetac_inva(v1, v2, v3);
205 boost::math::ibeta_invb(v1, v2, v3);
206 boost::math::ibetac_invb(v1, v2, v3);
207 boost::math::gamma_p_derivative(v2, v3);
208 boost::math::ibeta_derivative(v1, v2, v3);
209 boost::math::binomial_coefficient<RealType>(i, i);
210 (boost::math::fpclassify)(v1);
211 (boost::math::isfinite)(v1);
212 (boost::math::isnormal)(v1);
213 (boost::math::isnan)(v1);
214 (boost::math::isinf)(v1);
215 (boost::math::signbit)(v1);
216 (boost::math::copysign)(v1, v2);
217 (boost::math::changesign)(v1);
218 (boost::math::sign)(v1);
219 boost::math::log1p(v1);
220 boost::math::expm1(v1);
221 boost::math::cbrt(v1);
222 boost::math::sqrt1pm1(v1);
223 boost::math::powm1(v1, v2);
224 boost::math::legendre_p(1, v1);
225 boost::math::legendre_p(1, 0, v1);
226 boost::math::legendre_q(1, v1);
b32b8144 227 boost::math::legendre_p_prime(1, v1);
7c673cae
FG
228 boost::math::legendre_next(2, v1, v2, v3);
229 boost::math::legendre_next(2, 2, v1, v2, v3);
230 boost::math::laguerre(1, v1);
231 boost::math::laguerre(2, 1, v1);
232 boost::math::laguerre(2u, 1u, v1);
233 boost::math::laguerre_next(2, v1, v2, v3);
234 boost::math::laguerre_next(2, 1, v1, v2, v3);
235 boost::math::hermite(1, v1);
236 boost::math::hermite_next(2, v1, v2, v3);
b32b8144
FG
237 boost::math::chebyshev_next(v1, v2, v3);
238 boost::math::chebyshev_t(1, v1);
239 boost::math::chebyshev_u(1, v1);
240 boost::math::chebyshev_t_prime(1, v1);
241 boost::math::chebyshev_clenshaw_recurrence(&v1, 0, v2);
7c673cae
FG
242 boost::math::spherical_harmonic_r(2, 1, v1, v2);
243 boost::math::spherical_harmonic_i(2, 1, v1, v2);
244 boost::math::ellint_1(v1);
245 boost::math::ellint_1(v1, v2);
246 boost::math::ellint_2(v1);
247 boost::math::ellint_2(v1, v2);
248 boost::math::ellint_3(v1, v2);
249 boost::math::ellint_3(v1, v2, v3);
250 boost::math::ellint_d(v1);
251 boost::math::ellint_d(v1, v2);
252 boost::math::jacobi_zeta(v1, v2);
253 boost::math::heuman_lambda(v1, v2);
254 boost::math::ellint_rc(v1, v2);
255 boost::math::ellint_rd(v1, v2, v3);
256 boost::math::ellint_rf(v1, v2, v3);
257 boost::math::ellint_rg(v1, v2, v3);
258 boost::math::ellint_rj(v1, v2, v3, v1);
259 boost::math::jacobi_elliptic(v1, v2, &v1, &v2);
260 boost::math::jacobi_cd(v1, v2);
261 boost::math::jacobi_cn(v1, v2);
262 boost::math::jacobi_cs(v1, v2);
263 boost::math::jacobi_dc(v1, v2);
264 boost::math::jacobi_dn(v1, v2);
265 boost::math::jacobi_ds(v1, v2);
266 boost::math::jacobi_nc(v1, v2);
267 boost::math::jacobi_nd(v1, v2);
268 boost::math::jacobi_ns(v1, v2);
269 boost::math::jacobi_sc(v1, v2);
270 boost::math::jacobi_sd(v1, v2);
271 boost::math::jacobi_sn(v1, v2);
272 boost::math::hypot(v1, v2);
273 boost::math::sinc_pi(v1);
274 boost::math::sinhc_pi(v1);
275 boost::math::asinh(v1);
276 boost::math::acosh(v1);
277 boost::math::atanh(v1);
278 boost::math::sin_pi(v1);
279 boost::math::cos_pi(v1);
280 boost::math::cyl_neumann(v1, v2);
281 boost::math::cyl_neumann(i, v2);
282 boost::math::cyl_bessel_j(v1, v2);
283 boost::math::cyl_bessel_j(i, v2);
284 boost::math::cyl_bessel_i(v1, v2);
285 boost::math::cyl_bessel_i(i, v2);
286 boost::math::cyl_bessel_k(v1, v2);
287 boost::math::cyl_bessel_k(i, v2);
288 boost::math::sph_bessel(i, v2);
289 boost::math::sph_bessel(i, 1);
290 boost::math::sph_neumann(i, v2);
291 boost::math::sph_neumann(i, i);
292 boost::math::cyl_neumann_prime(v1, v2);
293 boost::math::cyl_neumann_prime(i, v2);
294 boost::math::cyl_bessel_j_prime(v1, v2);
295 boost::math::cyl_bessel_j_prime(i, v2);
296 boost::math::cyl_bessel_i_prime(v1, v2);
297 boost::math::cyl_bessel_i_prime(i, v2);
298 boost::math::cyl_bessel_k_prime(v1, v2);
299 boost::math::cyl_bessel_k_prime(i, v2);
300 boost::math::sph_bessel_prime(i, v2);
301 boost::math::sph_bessel_prime(i, 1);
302 boost::math::sph_neumann_prime(i, v2);
303 boost::math::sph_neumann_prime(i, i);
304 boost::math::cyl_bessel_j_zero(v1, i);
305 boost::math::cyl_bessel_j_zero(v1, i, i, oi);
306 boost::math::cyl_neumann_zero(v1, i);
307 boost::math::cyl_neumann_zero(v1, i, i, oi);
308#ifdef TEST_COMPLEX
309 boost::math::cyl_hankel_1(v1, v2);
310 boost::math::cyl_hankel_1(i, v2);
311 boost::math::cyl_hankel_2(v1, v2);
312 boost::math::cyl_hankel_2(i, v2);
313 boost::math::sph_hankel_1(v1, v2);
314 boost::math::sph_hankel_1(i, v2);
315 boost::math::sph_hankel_2(v1, v2);
316 boost::math::sph_hankel_2(i, v2);
317#endif
318 boost::math::airy_ai(v1);
319 boost::math::airy_bi(v1);
320 boost::math::airy_ai_prime(v1);
321 boost::math::airy_bi_prime(v1);
322
323 boost::math::airy_ai_zero<RealType>(i);
324 boost::math::airy_bi_zero<RealType>(i);
325 boost::math::airy_ai_zero<RealType>(i, i, oi);
326 boost::math::airy_bi_zero<RealType>(i, i, oi);
327
328 boost::math::expint(v1);
329 boost::math::expint(i);
330 boost::math::expint(i, v2);
331 boost::math::expint(i, i);
332 boost::math::zeta(v1);
333 boost::math::zeta(i);
334 boost::math::owens_t(v1, v2);
335 boost::math::trunc(v1);
336 boost::math::itrunc(v1);
337 boost::math::ltrunc(v1);
338 boost::math::round(v1);
339 boost::math::iround(v1);
340 boost::math::lround(v1);
341 boost::math::modf(v1, &v1);
342 boost::math::modf(v1, &i);
343 long l;
344 boost::math::modf(v1, &l);
345#ifdef BOOST_HAS_LONG_LONG
346 boost::math::lltrunc(v1);
347 boost::math::llround(v1);
348 boost::long_long_type ll;
349 boost::math::modf(v1, &ll);
350#endif
351 boost::math::pow<2>(v1);
352 boost::math::nextafter(v1, v1);
353 boost::math::float_next(v1);
354 boost::math::float_prior(v1);
355 boost::math::float_distance(v1, v1);
356 boost::math::ulp(v1);
357 boost::math::relative_difference(v1, v2);
358 boost::math::epsilon_difference(v1, v2);
359
360 boost::math::unchecked_bernoulli_b2n<RealType>(i);
361 boost::math::bernoulli_b2n<RealType>(i);
362 boost::math::bernoulli_b2n<RealType>(i, i, &v1);
363 boost::math::tangent_t2n<RealType>(i);
364 boost::math::tangent_t2n<RealType>(i, i, &v1);
365
366#endif
367#ifdef TEST_GROUP_9
368 //
369 // Over again, but arguments may be expression templates:
370 //
371 boost::math::tgamma(v1 + 0);
372 boost::math::tgamma1pm1(v1 + 0);
373 boost::math::lgamma(v1 * 1);
374 boost::math::lgamma(v1 * 1, &i);
375 boost::math::digamma(v1 * 1);
376 boost::math::trigamma(v1 * 1);
377 boost::math::polygamma(i, v1 * 1);
378 boost::math::tgamma_ratio(v1 * 1, v2 + 0);
379 boost::math::tgamma_delta_ratio(v1 * 1, v2 + 0);
380 boost::math::factorial<RealType>(i);
381 boost::math::unchecked_factorial<RealType>(i);
382 i = boost::math::max_factorial<RealType>::value;
383 boost::math::double_factorial<RealType>(i);
384 boost::math::rising_factorial(v1 * 1, i);
385 boost::math::falling_factorial(v1 * 1, i);
386 boost::math::tgamma(v1 * 1, v2 + 0);
387 boost::math::tgamma_lower(v1 * 1, v2 - 0);
388 boost::math::gamma_p(v1 * 1, v2 + 0);
389 boost::math::gamma_q(v1 * 1, v2 + 0);
390 boost::math::gamma_p_inv(v1 * 1, v2 + 0);
391 boost::math::gamma_q_inv(v1 * 1, v2 + 0);
392 boost::math::gamma_p_inva(v1 * 1, v2 + 0);
393 boost::math::gamma_q_inva(v1 * 1, v2 + 0);
394 boost::math::erf(v1 * 1);
395 boost::math::erfc(v1 * 1);
396 boost::math::erf_inv(v1 * 1);
397 boost::math::erfc_inv(v1 * 1);
398 boost::math::beta(v1 * 1, v2 + 0);
399 boost::math::beta(v1 * 1, v2 + 0, v3 / 1);
400 boost::math::betac(v1 * 1, v2 + 0, v3 / 1);
401 boost::math::ibeta(v1 * 1, v2 + 0, v3 / 1);
402 boost::math::ibetac(v1 * 1, v2 + 0, v3 / 1);
403 boost::math::ibeta_inv(v1 * 1, v2 + 0, v3 / 1);
404 boost::math::ibetac_inv(v1 * 1, v2 + 0, v3 / 1);
405 boost::math::ibeta_inva(v1 * 1, v2 + 0, v3 / 1);
406 boost::math::ibetac_inva(v1 * 1, v2 + 0, v3 / 1);
407 boost::math::ibeta_invb(v1 * 1, v2 + 0, v3 / 1);
408 boost::math::ibetac_invb(v1 * 1, v2 + 0, v3 / 1);
409 boost::math::gamma_p_derivative(v2 * 1, v3 + 0);
410 boost::math::ibeta_derivative(v1 * 1, v2 + 0, v3 / 1);
411 (boost::math::fpclassify)(v1 * 1);
412 (boost::math::isfinite)(v1 * 1);
413 (boost::math::isnormal)(v1 * 1);
414 (boost::math::isnan)(v1 * 1);
415 (boost::math::isinf)(v1 * 1);
416 (boost::math::signbit)(v1 * 1);
417 (boost::math::copysign)(v1 * 1, v2 + 0);
418 (boost::math::changesign)(v1 * 1);
419 (boost::math::sign)(v1 * 1);
420 boost::math::log1p(v1 * 1);
421 boost::math::expm1(v1 * 1);
422 boost::math::cbrt(v1 * 1);
423 boost::math::sqrt1pm1(v1 * 1);
424 boost::math::powm1(v1 * 1, v2 + 0);
425 boost::math::legendre_p(1, v1 * 1);
426 boost::math::legendre_p(1, 0, v1 * 1);
b32b8144 427 boost::math::legendre_p_prime(1, v1 * 1);
7c673cae
FG
428 boost::math::legendre_q(1, v1 * 1);
429 boost::math::legendre_next(2, v1 * 1, v2 + 0, v3 / 1);
430 boost::math::legendre_next(2, 2, v1 * 1, v2 + 0, v3 / 1);
431 boost::math::laguerre(1, v1 * 1);
432 boost::math::laguerre(2, 1, v1 * 1);
433 boost::math::laguerre(2u, 1u, v1 * 1);
434 boost::math::laguerre_next(2, v1 * 1, v2 + 0, v3 / 1);
435 boost::math::laguerre_next(2, 1, v1 * 1, v2 + 0, v3 / 1);
436 boost::math::hermite(1, v1 * 1);
437 boost::math::hermite_next(2, v1 * 1, v2 + 0, v3 / 1);
b32b8144
FG
438 boost::math::chebyshev_next(2 * v1, 1 + v2, 3 * v3);
439 boost::math::chebyshev_t(1, 2 * v1);
440 boost::math::chebyshev_u(1, 2 * v1);
441 boost::math::chebyshev_t_prime(1, 2 * v1);
442 boost::math::chebyshev_clenshaw_recurrence(&v1, 0, 2 * v2);
7c673cae
FG
443 boost::math::spherical_harmonic_r(2, 1, v1 * 1, v2 + 0);
444 boost::math::spherical_harmonic_i(2, 1, v1 * 1, v2 + 0);
445 boost::math::ellint_1(v1 * 1);
446 boost::math::ellint_1(v1 * 1, v2 + 0);
447 boost::math::ellint_2(v1 * 1);
448 boost::math::ellint_2(v1 * 1, v2 + 0);
449 boost::math::ellint_3(v1 * 1, v2 + 0);
450 boost::math::ellint_3(v1 * 1, v2 + 0, v3 / 1);
451 boost::math::ellint_rc(v1 * 1, v2 + 0);
452 boost::math::ellint_rd(v1 * 1, v2 + 0, v3 / 1);
453 boost::math::ellint_rf(v1 * 1, v2 + 0, v3 / 1);
454 boost::math::ellint_rg(v1 * 1, v2 + 0, v3 / 1);
455 boost::math::ellint_rj(v1 * 1, v2 + 0, v3 / 1, v1 * 1);
456 boost::math::ellint_d(v1 * 1);
457 boost::math::ellint_d(v1 * 1, v2 + 0);
458 boost::math::jacobi_zeta(v1 * 1, v2 + 0);
459 boost::math::heuman_lambda(v1 * 1, v2 + 0);
460 boost::math::jacobi_elliptic(v1 * 1, v2 + 0, &v1, &v2);
461 boost::math::jacobi_cd(v1 * 1, v2 + 0);
462 boost::math::jacobi_cn(v1 * 1, v2 + 0);
463 boost::math::jacobi_cs(v1 * 1, v2 + 0);
464 boost::math::jacobi_dc(v1 * 1, v2 + 0);
465 boost::math::jacobi_dn(v1 * 1, v2 + 0);
466 boost::math::jacobi_ds(v1 * 1, v2 + 0);
467 boost::math::jacobi_nc(v1 * 1, v2 + 0);
468 boost::math::jacobi_nd(v1 * 1, v2 + 0);
469 boost::math::jacobi_ns(v1 * 1, v2 + 0);
470 boost::math::jacobi_sc(v1 * 1, v2 + 0);
471 boost::math::jacobi_sd(v1 * 1, v2 + 0);
472 boost::math::jacobi_sn(v1 * 1, v2 + 0);
473 boost::math::hypot(v1 * 1, v2 + 0);
474 boost::math::sinc_pi(v1 * 1);
475 boost::math::sinhc_pi(v1 * 1);
476 boost::math::asinh(v1 * 1);
477 boost::math::acosh(v1 * 1);
478 boost::math::atanh(v1 * 1);
479 boost::math::sin_pi(v1 * 1);
480 boost::math::cos_pi(v1 * 1);
481 boost::math::cyl_neumann(v1 * 1, v2 + 0);
482 boost::math::cyl_neumann(i, v2 * 1);
483 boost::math::cyl_bessel_j(v1 * 1, v2 + 0);
484 boost::math::cyl_bessel_j(i, v2 * 1);
485 boost::math::cyl_bessel_i(v1 * 1, v2 + 0);
486 boost::math::cyl_bessel_i(i, v2 * 1);
487 boost::math::cyl_bessel_k(v1 * 1, v2 + 0);
488 boost::math::cyl_bessel_k(i, v2 * 1);
489 boost::math::sph_bessel(i, v2 * 1);
490 boost::math::sph_bessel(i, 1);
491 boost::math::sph_neumann(i, v2 * 1);
492 boost::math::sph_neumann(i, i);
493 boost::math::cyl_neumann_prime(v1 * 1, v2 + 0);
494 boost::math::cyl_neumann_prime(i, v2 * 1);
495 boost::math::cyl_bessel_j_prime(v1 * 1, v2 + 0);
496 boost::math::cyl_bessel_j_prime(i, v2 * 1);
497 boost::math::cyl_bessel_i_prime(v1 * 1, v2 + 0);
498 boost::math::cyl_bessel_i_prime(i, v2 * 1);
499 boost::math::cyl_bessel_k_prime(v1 * 1, v2 + 0);
500 boost::math::cyl_bessel_k_prime(i, v2 * 1);
501 boost::math::sph_bessel_prime(i, v2 * 1);
502 boost::math::sph_bessel_prime(i, 1);
503 boost::math::sph_neumann_prime(i, v2 * 1);
504 boost::math::sph_neumann_prime(i, i);
505 boost::math::cyl_bessel_j_zero(v1 * 1, i);
506 boost::math::cyl_bessel_j_zero(v1 * 1, i, i, oi);
507 boost::math::cyl_neumann_zero(v1 * 1, i);
508 boost::math::cyl_neumann_zero(v1 * 1, i, i, oi);
509#ifdef TEST_COMPLEX
510 boost::math::cyl_hankel_1(v1, v2);
511 boost::math::cyl_hankel_1(i, v2);
512 boost::math::cyl_hankel_2(v1, v2);
513 boost::math::cyl_hankel_2(i, v2);
514 boost::math::sph_hankel_1(v1, v2);
515 boost::math::sph_hankel_1(i, v2);
516 boost::math::sph_hankel_2(v1, v2);
517 boost::math::sph_hankel_2(i, v2);
518#endif
519 boost::math::airy_ai(v1 * 1);
520 boost::math::airy_bi(v1 * 1);
521 boost::math::airy_ai_prime(v1 * 1);
522 boost::math::airy_bi_prime(v1 * 1);
523 boost::math::expint(v1 * 1);
524 boost::math::expint(i);
525 boost::math::expint(i, v2 * 1);
526 boost::math::expint(i, i);
527 boost::math::zeta(v1 * 1);
528 boost::math::zeta(i);
529 boost::math::owens_t(v1 * 1, v2 + 0);
530 boost::math::trunc(v1 * 1);
531 boost::math::itrunc(v1 * 1);
532 boost::math::ltrunc(v1 * 1);
533 boost::math::round(v1 * 1);
534 boost::math::iround(v1 * 1);
535 boost::math::lround(v1 * 1);
536 //boost::math::modf(v1 * 1, &v1);
537 //boost::math::modf(v1 * 1, &i);
538 //long l;
539 //boost::math::modf(v1 * 1, &l);
540#ifdef BOOST_HAS_LONG_LONG
541 boost::math::lltrunc(v1 * 1);
542 boost::math::llround(v1 * 1);
543 //boost::long_long_type ll;
544 //boost::math::modf(v1 * 1, &ll);
545#endif
546 boost::math::pow<2>(v1 * 1);
547 boost::math::nextafter(v1 * 1, v1 + 0);
548 boost::math::float_next(v1 * 1);
549 boost::math::float_prior(v1 * 1);
550 boost::math::float_distance(v1 * 1, v1 * 1);
551 boost::math::ulp(v1 * 1);
552 boost::math::relative_difference(v1 * 1, v2 * 1);
553 boost::math::epsilon_difference(v1 * 1, v2 * 1);
554#endif
555#ifndef BOOST_MATH_INSTANTIATE_MINIMUM
556#ifdef TEST_GROUP_5
557 //
558 // All over again, with a policy this time:
559 //
560 test_policy pol;
561 boost::math::tgamma(v1, pol);
562 boost::math::tgamma1pm1(v1, pol);
563 boost::math::lgamma(v1, pol);
564 boost::math::lgamma(v1, &i, pol);
565 boost::math::digamma(v1, pol);
566 boost::math::trigamma(v1, pol);
567 boost::math::polygamma(i, v1, pol);
568 boost::math::tgamma_ratio(v1, v2, pol);
569 boost::math::tgamma_delta_ratio(v1, v2, pol);
570 boost::math::factorial<RealType>(i, pol);
571 boost::math::unchecked_factorial<RealType>(i);
572 i = boost::math::max_factorial<RealType>::value;
573 boost::math::double_factorial<RealType>(i, pol);
574 boost::math::rising_factorial(v1, i, pol);
575 boost::math::falling_factorial(v1, i, pol);
576 boost::math::tgamma(v1, v2, pol);
577 boost::math::tgamma_lower(v1, v2, pol);
578 boost::math::gamma_p(v1, v2, pol);
579 boost::math::gamma_q(v1, v2, pol);
580 boost::math::gamma_p_inv(v1, v2, pol);
581 boost::math::gamma_q_inv(v1, v2, pol);
582 boost::math::gamma_p_inva(v1, v2, pol);
583 boost::math::gamma_q_inva(v1, v2, pol);
584 boost::math::erf(v1, pol);
585 boost::math::erfc(v1, pol);
586 boost::math::erf_inv(v1, pol);
587 boost::math::erfc_inv(v1, pol);
588 boost::math::beta(v1, v2, pol);
589 boost::math::beta(v1, v2, v3, pol);
590 boost::math::betac(v1, v2, v3, pol);
591 boost::math::ibeta(v1, v2, v3, pol);
592 boost::math::ibetac(v1, v2, v3, pol);
593 boost::math::ibeta_inv(v1, v2, v3, pol);
594 boost::math::ibetac_inv(v1, v2, v3, pol);
595 boost::math::ibeta_inva(v1, v2, v3, pol);
596 boost::math::ibetac_inva(v1, v2, v3, pol);
597 boost::math::ibeta_invb(v1, v2, v3, pol);
598 boost::math::ibetac_invb(v1, v2, v3, pol);
599 boost::math::gamma_p_derivative(v2, v3, pol);
600 boost::math::ibeta_derivative(v1, v2, v3, pol);
601 boost::math::binomial_coefficient<RealType>(i, i, pol);
602 boost::math::log1p(v1, pol);
603 boost::math::expm1(v1, pol);
604 boost::math::cbrt(v1, pol);
605 boost::math::sqrt1pm1(v1, pol);
606 boost::math::powm1(v1, v2, pol);
607 boost::math::legendre_p(1, v1, pol);
608 boost::math::legendre_p(1, 0, v1, pol);
b32b8144 609 boost::math::legendre_p_prime(1, v1 * 1, pol);
7c673cae
FG
610 boost::math::legendre_q(1, v1, pol);
611 boost::math::legendre_next(2, v1, v2, v3);
612 boost::math::legendre_next(2, 2, v1, v2, v3);
613 boost::math::laguerre(1, v1, pol);
614 boost::math::laguerre(2, 1, v1, pol);
615 boost::math::laguerre_next(2, v1, v2, v3);
616 boost::math::laguerre_next(2, 1, v1, v2, v3);
617 boost::math::hermite(1, v1, pol);
618 boost::math::hermite_next(2, v1, v2, v3);
b32b8144
FG
619 boost::math::chebyshev_t(1, v1, pol);
620 boost::math::chebyshev_u(1, v1, pol);
621 boost::math::chebyshev_t_prime(1, v1, pol);
7c673cae
FG
622 boost::math::spherical_harmonic_r(2, 1, v1, v2, pol);
623 boost::math::spherical_harmonic_i(2, 1, v1, v2, pol);
624 boost::math::ellint_1(v1, pol);
625 boost::math::ellint_1(v1, v2, pol);
626 boost::math::ellint_2(v1, pol);
627 boost::math::ellint_2(v1, v2, pol);
628 boost::math::ellint_3(v1, v2, pol);
629 boost::math::ellint_3(v1, v2, v3, pol);
630 boost::math::ellint_d(v1, pol);
631 boost::math::ellint_d(v1, v2, pol);
632 boost::math::jacobi_zeta(v1, v2, pol);
633 boost::math::heuman_lambda(v1, v2, pol);
634 boost::math::ellint_rc(v1, v2, pol);
635 boost::math::ellint_rd(v1, v2, v3, pol);
636 boost::math::ellint_rf(v1, v2, v3, pol);
637 boost::math::ellint_rg(v1, v2, v3, pol);
638 boost::math::ellint_rj(v1, v2, v3, v1, pol);
639 boost::math::jacobi_elliptic(v1, v2, &v1, &v2, pol);
640 boost::math::jacobi_cd(v1, v2, pol);
641 boost::math::jacobi_cn(v1, v2, pol);
642 boost::math::jacobi_cs(v1, v2, pol);
643 boost::math::jacobi_dc(v1, v2, pol);
644 boost::math::jacobi_dn(v1, v2, pol);
645 boost::math::jacobi_ds(v1, v2, pol);
646 boost::math::jacobi_nc(v1, v2, pol);
647 boost::math::jacobi_nd(v1, v2, pol);
648 boost::math::jacobi_ns(v1, v2, pol);
649 boost::math::jacobi_sc(v1, v2, pol);
650 boost::math::jacobi_sd(v1, v2, pol);
651 boost::math::jacobi_sn(v1, v2, pol);
652 boost::math::hypot(v1, v2, pol);
653 boost::math::sinc_pi(v1, pol);
654 boost::math::sinhc_pi(v1, pol);
655 boost::math::asinh(v1, pol);
656 boost::math::acosh(v1, pol);
657 boost::math::atanh(v1, pol);
658 boost::math::sin_pi(v1, pol);
659 boost::math::cos_pi(v1, pol);
660 boost::math::cyl_neumann(v1, v2, pol);
661 boost::math::cyl_neumann(i, v2, pol);
662 boost::math::cyl_bessel_j(v1, v2, pol);
663 boost::math::cyl_bessel_j(i, v2, pol);
664 boost::math::cyl_bessel_i(v1, v2, pol);
665 boost::math::cyl_bessel_i(i, v2, pol);
666 boost::math::cyl_bessel_k(v1, v2, pol);
667 boost::math::cyl_bessel_k(i, v2, pol);
668 boost::math::sph_bessel(i, v2, pol);
669 boost::math::sph_bessel(i, 1, pol);
670 boost::math::sph_neumann(i, v2, pol);
671 boost::math::sph_neumann(i, i, pol);
672 boost::math::cyl_neumann_prime(v1, v2, pol);
673 boost::math::cyl_neumann_prime(i, v2, pol);
674 boost::math::cyl_bessel_j_prime(v1, v2, pol);
675 boost::math::cyl_bessel_j_prime(i, v2, pol);
676 boost::math::cyl_bessel_i_prime(v1, v2, pol);
677 boost::math::cyl_bessel_i_prime(i, v2, pol);
678 boost::math::cyl_bessel_k_prime(v1, v2, pol);
679 boost::math::cyl_bessel_k_prime(i, v2, pol);
680 boost::math::sph_bessel_prime(i, v2, pol);
681 boost::math::sph_bessel_prime(i, 1, pol);
682 boost::math::sph_neumann_prime(i, v2, pol);
683 boost::math::sph_neumann_prime(i, i, pol);
684 boost::math::cyl_bessel_j_zero(v1, i, pol);
685 boost::math::cyl_bessel_j_zero(v1, i, i, oi, pol);
686 boost::math::cyl_neumann_zero(v1, i, pol);
687 boost::math::cyl_neumann_zero(v1, i, i, oi, pol);
688#ifdef TEST_COMPLEX
689 boost::math::cyl_hankel_1(v1, v2, pol);
690 boost::math::cyl_hankel_1(i, v2, pol);
691 boost::math::cyl_hankel_2(v1, v2, pol);
692 boost::math::cyl_hankel_2(i, v2, pol);
693 boost::math::sph_hankel_1(v1, v2, pol);
694 boost::math::sph_hankel_1(i, v2, pol);
695 boost::math::sph_hankel_2(v1, v2, pol);
696 boost::math::sph_hankel_2(i, v2, pol);
697#endif
698 boost::math::airy_ai(v1, pol);
699 boost::math::airy_bi(v1, pol);
700 boost::math::airy_ai_prime(v1, pol);
701 boost::math::airy_bi_prime(v1, pol);
702
703 boost::math::airy_ai_zero<RealType>(i, pol);
704 boost::math::airy_bi_zero<RealType>(i, pol);
705 boost::math::airy_ai_zero<RealType>(i, i, oi, pol);
706 boost::math::airy_bi_zero<RealType>(i, i, oi, pol);
707
708 boost::math::expint(v1, pol);
709 boost::math::expint(i, pol);
710 boost::math::expint(i, v2, pol);
711 boost::math::expint(i, i, pol);
712 boost::math::zeta(v1, pol);
713 boost::math::zeta(i, pol);
714 boost::math::owens_t(v1, v2, pol);
715 //
716 // These next functions are intended to be found via ADL:
717 //
718 BOOST_MATH_STD_USING
719 trunc(v1, pol);
720 itrunc(v1, pol);
721 ltrunc(v1, pol);
722 round(v1, pol);
723 iround(v1, pol);
724 lround(v1, pol);
725 modf(v1, &v1, pol);
726 modf(v1, &i, pol);
727 modf(v1, &l, pol);
728#ifdef BOOST_HAS_LONG_LONG
729 using boost::math::lltrunc;
730 using boost::math::llround;
731 lltrunc(v1, pol);
732 llround(v1, pol);
733 modf(v1, &ll, pol);
734#endif
735 boost::math::pow<2>(v1, pol);
736 boost::math::nextafter(v1, v1, pol);
737 boost::math::float_next(v1, pol);
738 boost::math::float_prior(v1, pol);
739 boost::math::float_distance(v1, v1, pol);
740 boost::math::ulp(v1, pol);
741
742 boost::math::bernoulli_b2n<RealType>(i, pol);
743 boost::math::bernoulli_b2n<RealType>(i, i, &v1, pol);
744 boost::math::tangent_t2n<RealType>(i, pol);
745 boost::math::tangent_t2n<RealType>(i, i, &v1, pol);
746#endif
747#ifdef TEST_GROUP_6
748 //
749 // All over again with the versions in test::
750 //
751 test::tgamma(v1);
752 test::tgamma1pm1(v1);
753 test::lgamma(v1);
754 test::lgamma(v1, &i);
755 test::digamma(v1);
756 test::trigamma(v1);
757 test::polygamma(i, v1);
758 test::tgamma_ratio(v1, v2);
759 test::tgamma_delta_ratio(v1, v2);
760 test::factorial<RealType>(i);
761 test::unchecked_factorial<RealType>(i);
762 i = test::max_factorial<RealType>::value;
763 test::double_factorial<RealType>(i);
764 test::rising_factorial(v1, i);
765 test::falling_factorial(v1, i);
766 test::tgamma(v1, v2);
767 test::tgamma_lower(v1, v2);
768 test::gamma_p(v1, v2);
769 test::gamma_q(v1, v2);
770 test::gamma_p_inv(v1, v2);
771 test::gamma_q_inv(v1, v2);
772 test::gamma_p_inva(v1, v2);
773 test::gamma_q_inva(v1, v2);
774 test::erf(v1);
775 test::erfc(v1);
776 test::erf_inv(v1);
777 test::erfc_inv(v1);
778 test::beta(v1, v2);
779 test::beta(v1, v2, v3);
780 test::betac(v1, v2, v3);
781 test::ibeta(v1, v2, v3);
782 test::ibetac(v1, v2, v3);
783 test::ibeta_inv(v1, v2, v3);
784 test::ibetac_inv(v1, v2, v3);
785 test::ibeta_inva(v1, v2, v3);
786 test::ibetac_inva(v1, v2, v3);
787 test::ibeta_invb(v1, v2, v3);
788 test::ibetac_invb(v1, v2, v3);
789 test::gamma_p_derivative(v2, v3);
790 test::ibeta_derivative(v1, v2, v3);
791 test::binomial_coefficient<RealType>(i, i);
792 (test::fpclassify)(v1);
793 (test::isfinite)(v1);
794 (test::isnormal)(v1);
795 (test::isnan)(v1);
796 (test::isinf)(v1);
797 (test::signbit)(v1);
798 (test::copysign)(v1, v2);
799 (test::changesign)(v1);
800 (test::sign)(v1);
801 test::log1p(v1);
802 test::expm1(v1);
803 test::cbrt(v1);
804 test::sqrt1pm1(v1);
805 test::powm1(v1, v2);
806 test::legendre_p(1, v1);
807 test::legendre_p(1, 0, v1);
b32b8144 808 test::legendre_p_prime(1, v1 * 1);
7c673cae
FG
809 test::legendre_q(1, v1);
810 test::legendre_next(2, v1, v2, v3);
811 test::legendre_next(2, 2, v1, v2, v3);
812 test::laguerre(1, v1);
813 test::laguerre(2, 1, v1);
814 test::laguerre_next(2, v1, v2, v3);
815 test::laguerre_next(2, 1, v1, v2, v3);
816 test::hermite(1, v1);
817 test::hermite_next(2, v1, v2, v3);
b32b8144
FG
818 test::chebyshev_next(v1, v2, v3);
819 test::chebyshev_t(1, v1);
820 test::chebyshev_u(1, v1);
821 test::chebyshev_t_prime(1, v1);
822 test::chebyshev_clenshaw_recurrence(&v1, 0, v2);
7c673cae
FG
823 test::spherical_harmonic_r(2, 1, v1, v2);
824 test::spherical_harmonic_i(2, 1, v1, v2);
825 test::ellint_1(v1);
826 test::ellint_1(v1, v2);
827 test::ellint_2(v1);
828 test::ellint_2(v1, v2);
829 test::ellint_3(v1, v2);
830 test::ellint_3(v1, v2, v3);
831 test::ellint_d(v1);
832 test::ellint_d(v1, v2);
833 test::jacobi_zeta(v1, v2);
834 test::heuman_lambda(v1, v2);
835 test::ellint_rc(v1, v2);
836 test::ellint_rd(v1, v2, v3);
837 test::ellint_rf(v1, v2, v3);
838 test::ellint_rg(v1, v2, v3);
839 test::ellint_rj(v1, v2, v3, v1);
840 test::jacobi_elliptic(v1, v2, &v1, &v2);
841 test::jacobi_cd(v1, v2);
842 test::jacobi_cn(v1, v2);
843 test::jacobi_cs(v1, v2);
844 test::jacobi_dc(v1, v2);
845 test::jacobi_dn(v1, v2);
846 test::jacobi_ds(v1, v2);
847 test::jacobi_nc(v1, v2);
848 test::jacobi_nd(v1, v2);
849 test::jacobi_ns(v1, v2);
850 test::jacobi_sc(v1, v2);
851 test::jacobi_sd(v1, v2);
852 test::jacobi_sn(v1, v2);
853 test::hypot(v1, v2);
854 test::sinc_pi(v1);
855 test::sinhc_pi(v1);
856 test::asinh(v1);
857 test::acosh(v1);
858 test::atanh(v1);
859 test::sin_pi(v1);
860 test::cos_pi(v1);
861 test::cyl_neumann(v1, v2);
862 test::cyl_neumann(i, v2);
863 test::cyl_bessel_j(v1, v2);
864 test::cyl_bessel_j(i, v2);
865 test::cyl_bessel_i(v1, v2);
866 test::cyl_bessel_i(i, v2);
867 test::cyl_bessel_k(v1, v2);
868 test::cyl_bessel_k(i, v2);
869 test::sph_bessel(i, v2);
870 test::sph_bessel(i, 1);
871 test::sph_neumann(i, v2);
872 test::sph_neumann(i, i);
873 test::cyl_neumann_prime(v1, v2);
874 test::cyl_neumann_prime(i, v2);
875 test::cyl_bessel_j_prime(v1, v2);
876 test::cyl_bessel_j_prime(i, v2);
877 test::cyl_bessel_i_prime(v1, v2);
878 test::cyl_bessel_i_prime(i, v2);
879 test::cyl_bessel_k_prime(v1, v2);
880 test::cyl_bessel_k_prime(i, v2);
881 test::sph_bessel_prime(i, v2);
882 test::sph_bessel_prime(i, 1);
883 test::sph_neumann_prime(i, v2);
884 test::sph_neumann_prime(i, i);
885 test::cyl_bessel_j_zero(v1, i);
886 test::cyl_bessel_j_zero(v1, i, i, oi);
887 test::cyl_neumann_zero(v1, i);
888 test::cyl_neumann_zero(v1, i, i, oi);
889#ifdef TEST_COMPLEX
890 test::cyl_hankel_1(v1, v2);
891 test::cyl_hankel_1(i, v2);
892 test::cyl_hankel_2(v1, v2);
893 test::cyl_hankel_2(i, v2);
894 test::sph_hankel_1(v1, v2);
895 test::sph_hankel_1(i, v2);
896 test::sph_hankel_2(v1, v2);
897 test::sph_hankel_2(i, v2);
898#endif
899 test::airy_ai(i);
900 test::airy_bi(i);
901 test::airy_ai_prime(i);
902 test::airy_bi_prime(i);
903
904 test::airy_ai_zero<RealType>(i);
905 test::airy_bi_zero<RealType>(i);
906 test::airy_ai_zero<RealType>(i, i, oi);
907 test::airy_bi_zero<RealType>(i, i, oi);
908
909 test::expint(v1);
910 test::expint(i);
911 test::expint(i, v2);
912 test::expint(i, i);
913 test::zeta(v1);
914 test::zeta(i);
915 test::owens_t(v1, v2);
916 test::trunc(v1);
917 test::itrunc(v1);
918 test::ltrunc(v1);
919 test::round(v1);
920 test::iround(v1);
921 test::lround(v1);
922 test::modf(v1, &v1);
923 test::modf(v1, &i);
924 test::modf(v1, &l);
925#ifdef BOOST_HAS_LONG_LONG
926 test::lltrunc(v1);
927 test::llround(v1);
928 test::modf(v1, &ll);
929#endif
930 test::pow<2>(v1);
931 test::nextafter(v1, v1);
932 test::float_next(v1);
933 test::float_prior(v1);
934 test::float_distance(v1, v1);
935 test::ulp(v1);
936#endif
937#endif
938}
939
940template <class RealType>
941void instantiate_mixed(RealType)
942{
943 using namespace boost;
944 using namespace boost::math;
945#ifndef BOOST_MATH_INSTANTIATE_MINIMUM
946 int i = 1;
b32b8144 947 (void)i;
7c673cae 948 long l = 1;
b32b8144 949 (void)l;
7c673cae 950 short s = 1;
b32b8144 951 (void)s;
7c673cae 952 float fr = 0.5F;
b32b8144 953 (void)fr;
7c673cae 954 double dr = 0.5;
b32b8144 955 (void)dr;
7c673cae
FG
956#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
957 long double lr = 0.5L;
b32b8144 958 (void)lr;
7c673cae
FG
959#else
960 double lr = 0.5L;
b32b8144 961 (void)lr;
7c673cae
FG
962#endif
963#ifdef TEST_GROUP_7
964 boost::math::tgamma(i);
965 boost::math::tgamma1pm1(i);
966 boost::math::lgamma(i);
967 boost::math::lgamma(i, &i);
968 boost::math::digamma(i);
969 boost::math::trigamma(i);
970 boost::math::polygamma(i, i);
971 boost::math::tgamma_ratio(i, l);
972 boost::math::tgamma_ratio(fr, lr);
973 boost::math::tgamma_delta_ratio(i, s);
974 boost::math::tgamma_delta_ratio(fr, lr);
975 boost::math::rising_factorial(s, i);
976 boost::math::falling_factorial(s, i);
977 boost::math::tgamma(i, l);
978 boost::math::tgamma(fr, lr);
979 boost::math::tgamma_lower(i, s);
980 boost::math::tgamma_lower(fr, lr);
981 boost::math::gamma_p(i, s);
982 boost::math::gamma_p(fr, lr);
983 boost::math::gamma_q(i, s);
984 boost::math::gamma_q(fr, lr);
985 boost::math::gamma_p_inv(i, fr);
986 boost::math::gamma_q_inv(s, fr);
987 boost::math::gamma_p_inva(i, lr);
988 boost::math::gamma_q_inva(i, lr);
989 boost::math::erf(i);
990 boost::math::erfc(i);
991 boost::math::erf_inv(i);
992 boost::math::erfc_inv(i);
993 boost::math::beta(i, s);
994 boost::math::beta(fr, lr);
995 boost::math::beta(i, s, l);
996 boost::math::beta(fr, dr, lr);
997 boost::math::betac(l, i, s);
998 boost::math::betac(fr, dr, lr);
999 boost::math::ibeta(l, i, s);
1000 boost::math::ibeta(fr, dr, lr);
1001 boost::math::ibetac(l, i, s);
1002 boost::math::ibetac(fr, dr, lr);
1003 boost::math::ibeta_inv(l, s, i);
1004 boost::math::ibeta_inv(fr, dr, lr);
1005 boost::math::ibetac_inv(l, i, s);
1006 boost::math::ibetac_inv(fr, dr, lr);
1007 boost::math::ibeta_inva(l, i, s);
1008 boost::math::ibeta_inva(fr, dr, lr);
1009 boost::math::ibetac_inva(l, i, s);
1010 boost::math::ibetac_inva(fr, dr, lr);
1011 boost::math::ibeta_invb(l, i, s);
1012 boost::math::ibeta_invb(fr, dr, lr);
1013 boost::math::ibetac_invb(l, i, s);
1014 boost::math::ibetac_invb(fr, dr, lr);
1015 boost::math::gamma_p_derivative(i, l);
1016 boost::math::gamma_p_derivative(fr, lr);
1017 boost::math::ibeta_derivative(l, i, s);
1018 boost::math::ibeta_derivative(fr, dr, lr);
1019 (boost::math::fpclassify)(i);
1020 (boost::math::isfinite)(s);
1021 (boost::math::isnormal)(l);
1022 (boost::math::isnan)(i);
1023 (boost::math::isinf)(l);
1024 boost::math::log1p(i);
1025 boost::math::expm1(s);
1026 boost::math::cbrt(l);
1027 boost::math::sqrt1pm1(s);
1028 boost::math::powm1(i, s);
1029 boost::math::powm1(fr, lr);
1030 //boost::math::legendre_p(1, i);
1031 boost::math::legendre_p(1, 0, s);
1032 boost::math::legendre_q(1, i);
1033 boost::math::laguerre(1, i);
1034 boost::math::laguerre(2, 1, i);
1035 boost::math::laguerre(2u, 1u, s);
1036 boost::math::hermite(1, s);
b32b8144
FG
1037 boost::math::chebyshev_t(1, i);
1038 boost::math::chebyshev_u(1, i);
1039 boost::math::chebyshev_t_prime(1, i);
7c673cae
FG
1040 boost::math::spherical_harmonic_r(2, 1, s, i);
1041 boost::math::spherical_harmonic_i(2, 1, fr, lr);
1042 boost::math::ellint_1(i);
1043 boost::math::ellint_1(i, s);
1044 boost::math::ellint_1(fr, lr);
1045 boost::math::ellint_2(i);
1046 boost::math::ellint_2(i, l);
1047 boost::math::ellint_2(fr, lr);
1048 boost::math::ellint_3(i, l);
1049 boost::math::ellint_3(fr, lr);
1050 boost::math::ellint_3(s, l, i);
1051 boost::math::ellint_3(fr, dr, lr);
1052 boost::math::ellint_d(i);
1053 boost::math::ellint_d(i, l);
1054 boost::math::ellint_d(fr, lr);
1055 boost::math::jacobi_zeta(i, l);
1056 boost::math::jacobi_zeta(fr, lr);
1057 boost::math::heuman_lambda(i, l);
1058 boost::math::heuman_lambda(fr, lr);
1059 boost::math::ellint_rc(i, s);
1060 boost::math::ellint_rc(fr, lr);
1061 boost::math::ellint_rd(s, i, l);
1062 boost::math::ellint_rd(fr, lr, dr);
1063 boost::math::ellint_rf(s, l, i);
1064 boost::math::ellint_rf(fr, dr, lr);
1065 boost::math::ellint_rg(s, l, i);
1066 boost::math::ellint_rg(fr, dr, lr);
1067 boost::math::ellint_rj(i, i, s, l);
1068 boost::math::ellint_rj(i, fr, dr, lr);
1069 boost::math::jacobi_cd(i, fr);
1070 boost::math::jacobi_cn(i, fr);
1071 boost::math::jacobi_cs(i, fr);
1072 boost::math::jacobi_dc(i, fr);
1073 boost::math::jacobi_dn(i, fr);
1074 boost::math::jacobi_ds(i, fr);
1075 boost::math::jacobi_nc(i, fr);
1076 boost::math::jacobi_nd(i, fr);
1077 boost::math::jacobi_ns(i, fr);
1078 boost::math::jacobi_sc(i, fr);
1079 boost::math::jacobi_sd(i, fr);
1080 boost::math::jacobi_sn(i, fr);
1081 boost::math::hypot(i, s);
1082 boost::math::hypot(fr, lr);
1083 boost::math::sinc_pi(i);
1084 boost::math::sinhc_pi(i);
1085 boost::math::asinh(s);
1086 boost::math::acosh(l);
1087 boost::math::atanh(l);
1088 boost::math::sin_pi(s);
1089 boost::math::cos_pi(s);
1090 boost::math::cyl_neumann(fr, dr);
1091 boost::math::cyl_neumann(i, s);
1092 boost::math::cyl_bessel_j(fr, lr);
1093 boost::math::cyl_bessel_j(i, s);
1094 boost::math::cyl_bessel_i(fr, lr);
1095 boost::math::cyl_bessel_i(i, s);
1096 boost::math::cyl_bessel_k(fr, lr);
1097 boost::math::cyl_bessel_k(i, s);
1098 boost::math::sph_bessel(i, fr);
1099 boost::math::sph_bessel(i, 1);
1100 boost::math::sph_neumann(i, lr);
1101 boost::math::sph_neumann(i, i);
1102 boost::math::cyl_neumann_prime(fr, dr);
1103 boost::math::cyl_neumann_prime(i, s);
1104 boost::math::cyl_bessel_j_prime(fr, lr);
1105 boost::math::cyl_bessel_j_prime(i, s);
1106 boost::math::cyl_bessel_i_prime(fr, lr);
1107 boost::math::cyl_bessel_i_prime(i, s);
1108 boost::math::cyl_bessel_k_prime(fr, lr);
1109 boost::math::cyl_bessel_k_prime(i, s);
1110 boost::math::sph_bessel_prime(i, fr);
1111 boost::math::sph_bessel_prime(i, 1);
1112 boost::math::sph_neumann_prime(i, lr);
1113 boost::math::sph_neumann_prime(i, i);
1114 boost::math::owens_t(fr, dr);
1115 boost::math::owens_t(i, s);
1116
1117 boost::math::policies::policy<> pol;
1118
1119
1120 boost::math::tgamma(i, pol);
1121 boost::math::tgamma1pm1(i, pol);
1122 boost::math::lgamma(i, pol);
1123 boost::math::lgamma(i, &i, pol);
1124 boost::math::digamma(i, pol);
1125 boost::math::trigamma(i, pol);
1126 boost::math::polygamma(i, i, pol);
1127 boost::math::tgamma_ratio(i, l, pol);
1128 boost::math::tgamma_ratio(fr, lr, pol);
1129 boost::math::tgamma_delta_ratio(i, s, pol);
1130 boost::math::tgamma_delta_ratio(fr, lr, pol);
1131 boost::math::rising_factorial(s, i, pol);
1132 boost::math::falling_factorial(s, i, pol);
1133 boost::math::tgamma(i, l, pol);
1134 boost::math::tgamma(fr, lr, pol);
1135 boost::math::tgamma_lower(i, s, pol);
1136 boost::math::tgamma_lower(fr, lr, pol);
1137 boost::math::gamma_p(i, s, pol);
1138 boost::math::gamma_p(fr, lr, pol);
1139 boost::math::gamma_q(i, s, pol);
1140 boost::math::gamma_q(fr, lr, pol);
1141 boost::math::gamma_p_inv(i, fr, pol);
1142 boost::math::gamma_q_inv(s, fr, pol);
1143 boost::math::gamma_p_inva(i, lr, pol);
1144 boost::math::gamma_q_inva(i, lr, pol);
1145 boost::math::erf(i, pol);
1146 boost::math::erfc(i, pol);
1147 boost::math::erf_inv(i, pol);
1148 boost::math::erfc_inv(i, pol);
1149 boost::math::beta(i, s, pol);
1150 boost::math::beta(fr, lr, pol);
1151 boost::math::beta(i, s, l, pol);
1152 boost::math::beta(fr, dr, lr, pol);
1153 boost::math::betac(l, i, s, pol);
1154 boost::math::betac(fr, dr, lr, pol);
1155 boost::math::ibeta(l, i, s, pol);
1156 boost::math::ibeta(fr, dr, lr, pol);
1157 boost::math::ibetac(l, i, s, pol);
1158 boost::math::ibetac(fr, dr, lr, pol);
1159 boost::math::ibeta_inv(l, s, i, pol);
1160 boost::math::ibeta_inv(fr, dr, lr, pol);
1161 boost::math::ibetac_inv(l, i, s, pol);
1162 boost::math::ibetac_inv(fr, dr, lr, pol);
1163 boost::math::ibeta_inva(l, i, s, pol);
1164 boost::math::ibeta_inva(fr, dr, lr, pol);
1165 boost::math::ibetac_inva(l, i, s, pol);
1166 boost::math::ibetac_inva(fr, dr, lr, pol);
1167 boost::math::ibeta_invb(l, i, s, pol);
1168 boost::math::ibeta_invb(fr, dr, lr, pol);
1169 boost::math::ibetac_invb(l, i, s, pol);
1170 boost::math::ibetac_invb(fr, dr, lr, pol);
1171 boost::math::gamma_p_derivative(i, l, pol);
1172 boost::math::gamma_p_derivative(fr, lr, pol);
1173 boost::math::ibeta_derivative(l, i, s, pol);
1174 boost::math::ibeta_derivative(fr, dr, lr, pol);
1175 boost::math::log1p(i, pol);
1176 boost::math::expm1(s, pol);
1177 boost::math::cbrt(l, pol);
1178 boost::math::sqrt1pm1(s, pol);
1179 boost::math::powm1(i, s, pol);
1180 boost::math::powm1(fr, lr, pol);
1181 //boost::math::legendre_p(1, i, pol);
1182 boost::math::legendre_p(1, 0, s, pol);
1183 boost::math::legendre_q(1, i, pol);
1184 boost::math::laguerre(1, i, pol);
1185 boost::math::laguerre(2, 1, i, pol);
1186 boost::math::laguerre(2u, 1u, s, pol);
1187 boost::math::hermite(1, s, pol);
b32b8144
FG
1188 boost::math::chebyshev_t(1, i, pol);
1189 boost::math::chebyshev_u(1, i, pol);
1190 boost::math::chebyshev_t_prime(1, i, pol);
7c673cae
FG
1191 boost::math::spherical_harmonic_r(2, 1, s, i, pol);
1192 boost::math::spherical_harmonic_i(2, 1, fr, lr, pol);
1193 boost::math::ellint_1(i, pol);
1194 boost::math::ellint_1(i, s, pol);
1195 boost::math::ellint_1(fr, lr, pol);
1196 boost::math::ellint_2(i, pol);
1197 boost::math::ellint_2(i, l, pol);
1198 boost::math::ellint_2(fr, lr, pol);
1199 boost::math::ellint_3(i, l, pol);
1200 boost::math::ellint_3(fr, lr, pol);
1201 boost::math::ellint_3(s, l, i, pol);
1202 boost::math::ellint_3(fr, dr, lr, pol);
1203 boost::math::ellint_d(i, pol);
1204 boost::math::ellint_d(i, l, pol);
1205 boost::math::ellint_d(fr, lr, pol);
1206 boost::math::jacobi_zeta(i, l, pol);
1207 boost::math::jacobi_zeta(fr, lr, pol);
1208 boost::math::heuman_lambda(i, l, pol);
1209 boost::math::heuman_lambda(fr, lr, pol);
1210 boost::math::ellint_rc(i, s, pol);
1211 boost::math::ellint_rc(fr, lr, pol);
1212 boost::math::ellint_rd(s, i, l, pol);
1213 boost::math::ellint_rd(fr, lr, dr, pol);
1214 boost::math::ellint_rf(s, l, i, pol);
1215 boost::math::ellint_rf(fr, dr, lr, pol);
1216 boost::math::ellint_rg(s, l, i, pol);
1217 boost::math::ellint_rg(fr, dr, lr, pol);
1218 boost::math::ellint_rj(i, i, s, l, pol);
1219 boost::math::ellint_rj(i, fr, dr, lr, pol);
1220 boost::math::jacobi_cd(i, fr, pol);
1221 boost::math::jacobi_cn(i, fr, pol);
1222 boost::math::jacobi_cs(i, fr, pol);
1223 boost::math::jacobi_dc(i, fr, pol);
1224 boost::math::jacobi_dn(i, fr, pol);
1225 boost::math::jacobi_ds(i, fr, pol);
1226 boost::math::jacobi_nc(i, fr, pol);
1227 boost::math::jacobi_nd(i, fr, pol);
1228 boost::math::jacobi_ns(i, fr, pol);
1229 boost::math::jacobi_sc(i, fr, pol);
1230 boost::math::jacobi_sd(i, fr, pol);
1231 boost::math::jacobi_sn(i, fr, pol);
1232 boost::math::hypot(i, s, pol);
1233 boost::math::hypot(fr, lr, pol);
1234 boost::math::sinc_pi(i, pol);
1235 boost::math::sinhc_pi(i, pol);
1236 boost::math::asinh(s, pol);
1237 boost::math::acosh(l, pol);
1238 boost::math::atanh(l, pol);
1239 boost::math::sin_pi(s, pol);
1240 boost::math::cos_pi(s, pol);
1241 boost::math::cyl_neumann(fr, dr, pol);
1242 boost::math::cyl_neumann(i, s, pol);
1243 boost::math::cyl_bessel_j(fr, lr, pol);
1244 boost::math::cyl_bessel_j(i, s, pol);
1245 boost::math::cyl_bessel_i(fr, lr, pol);
1246 boost::math::cyl_bessel_i(i, s, pol);
1247 boost::math::cyl_bessel_k(fr, lr, pol);
1248 boost::math::cyl_bessel_k(i, s, pol);
1249 boost::math::sph_bessel(i, fr, pol);
1250 boost::math::sph_bessel(i, 1, pol);
1251 boost::math::sph_neumann(i, lr, pol);
1252 boost::math::sph_neumann(i, i, pol);
1253 boost::math::cyl_neumann_prime(fr, dr, pol);
1254 boost::math::cyl_neumann_prime(i, s, pol);
1255 boost::math::cyl_bessel_j_prime(fr, lr, pol);
1256 boost::math::cyl_bessel_j_prime(i, s, pol);
1257 boost::math::cyl_bessel_i_prime(fr, lr, pol);
1258 boost::math::cyl_bessel_i_prime(i, s, pol);
1259 boost::math::cyl_bessel_k_prime(fr, lr, pol);
1260 boost::math::cyl_bessel_k_prime(i, s, pol);
1261 boost::math::sph_bessel_prime(i, fr, pol);
1262 boost::math::sph_bessel_prime(i, 1, pol);
1263 boost::math::sph_neumann_prime(i, lr, pol);
1264 boost::math::sph_neumann_prime(i, i, pol);
1265 boost::math::owens_t(fr, dr, pol);
1266 boost::math::owens_t(i, s, pol);
1267#endif
1268#ifdef TEST_GROUP_8
1269 test::tgamma(i);
1270 test::tgamma1pm1(i);
1271 test::lgamma(i);
1272 test::lgamma(i, &i);
1273 test::digamma(i);
1274 test::trigamma(i);
1275 test::polygamma(i, i);
1276 test::tgamma_ratio(i, l);
1277 test::tgamma_ratio(fr, lr);
1278 test::tgamma_delta_ratio(i, s);
1279 test::tgamma_delta_ratio(fr, lr);
1280 test::rising_factorial(s, i);
1281 test::falling_factorial(s, i);
1282 test::tgamma(i, l);
1283 test::tgamma(fr, lr);
1284 test::tgamma_lower(i, s);
1285 test::tgamma_lower(fr, lr);
1286 test::gamma_p(i, s);
1287 test::gamma_p(fr, lr);
1288 test::gamma_q(i, s);
1289 test::gamma_q(fr, lr);
1290 test::gamma_p_inv(i, fr);
1291 test::gamma_q_inv(s, fr);
1292 test::gamma_p_inva(i, lr);
1293 test::gamma_q_inva(i, lr);
1294 test::erf(i);
1295 test::erfc(i);
1296 test::erf_inv(i);
1297 test::erfc_inv(i);
1298 test::beta(i, s);
1299 test::beta(fr, lr);
1300 test::beta(i, s, l);
1301 test::beta(fr, dr, lr);
1302 test::betac(l, i, s);
1303 test::betac(fr, dr, lr);
1304 test::ibeta(l, i, s);
1305 test::ibeta(fr, dr, lr);
1306 test::ibetac(l, i, s);
1307 test::ibetac(fr, dr, lr);
1308 test::ibeta_inv(l, s, i);
1309 test::ibeta_inv(fr, dr, lr);
1310 test::ibetac_inv(l, i, s);
1311 test::ibetac_inv(fr, dr, lr);
1312 test::ibeta_inva(l, i, s);
1313 test::ibeta_inva(fr, dr, lr);
1314 test::ibetac_inva(l, i, s);
1315 test::ibetac_inva(fr, dr, lr);
1316 test::ibeta_invb(l, i, s);
1317 test::ibeta_invb(fr, dr, lr);
1318 test::ibetac_invb(l, i, s);
1319 test::ibetac_invb(fr, dr, lr);
1320 test::gamma_p_derivative(i, l);
1321 test::gamma_p_derivative(fr, lr);
1322 test::ibeta_derivative(l, i, s);
1323 test::ibeta_derivative(fr, dr, lr);
1324 (test::fpclassify)(i);
1325 (test::isfinite)(s);
1326 (test::isnormal)(l);
1327 (test::isnan)(i);
1328 (test::isinf)(l);
1329 test::log1p(i);
1330 test::expm1(s);
1331 test::cbrt(l);
1332 test::sqrt1pm1(s);
1333 test::powm1(i, s);
1334 test::powm1(fr, lr);
1335 //test::legendre_p(1, i);
1336 test::legendre_p(1, 0, s);
1337 test::legendre_q(1, i);
1338 test::laguerre(1, i);
1339 test::laguerre(2, 1, i);
1340 test::laguerre(2u, 1u, s);
1341 test::hermite(1, s);
b32b8144
FG
1342 test::chebyshev_t(1, i);
1343 test::chebyshev_u(1, i);
1344 test::chebyshev_t_prime(1, s);
7c673cae
FG
1345 test::spherical_harmonic_r(2, 1, s, i);
1346 test::spherical_harmonic_i(2, 1, fr, lr);
1347 test::ellint_1(i);
1348 test::ellint_1(i, s);
1349 test::ellint_1(fr, lr);
1350 test::ellint_2(i);
1351 test::ellint_2(i, l);
1352 test::ellint_2(fr, lr);
1353 test::ellint_3(i, l);
1354 test::ellint_3(fr, lr);
1355 test::ellint_3(s, l, i);
1356 test::ellint_3(fr, dr, lr);
1357 test::ellint_d(i);
1358 test::ellint_d(i, l);
1359 test::ellint_d(fr, lr);
1360 test::jacobi_zeta(i, l);
1361 test::jacobi_zeta(fr, lr);
1362 test::heuman_lambda(i, l);
1363 test::heuman_lambda(fr, lr);
1364 test::ellint_rc(i, s);
1365 test::ellint_rc(fr, lr);
1366 test::ellint_rd(s, i, l);
1367 test::ellint_rd(fr, lr, dr);
1368 test::ellint_rf(s, l, i);
1369 test::ellint_rf(fr, dr, lr);
1370 test::ellint_rg(s, l, i);
1371 test::ellint_rg(fr, dr, lr);
1372 test::ellint_rj(i, i, s, l);
1373 test::ellint_rj(i, fr, dr, lr);
1374 test::hypot(i, s);
1375 test::hypot(fr, lr);
1376 test::sinc_pi(i);
1377 test::sinhc_pi(i);
1378 test::asinh(s);
1379 test::acosh(l);
1380 test::atanh(l);
1381 test::sin_pi(s);
1382 test::cos_pi(s);
1383 test::cyl_neumann(fr, dr);
1384 test::cyl_neumann(i, s);
1385 test::cyl_bessel_j(fr, lr);
1386 test::cyl_bessel_j(i, s);
1387 test::cyl_bessel_i(fr, lr);
1388 test::cyl_bessel_i(i, s);
1389 test::cyl_bessel_k(fr, lr);
1390 test::cyl_bessel_k(i, s);
1391 test::sph_bessel(i, fr);
1392 test::sph_bessel(i, 1);
1393 test::sph_neumann(i, lr);
1394 test::sph_neumann(i, i);
1395 test::cyl_neumann_prime(fr, dr);
1396 test::cyl_neumann_prime(i, s);
1397 test::cyl_bessel_j_prime(fr, lr);
1398 test::cyl_bessel_j_prime(i, s);
1399 test::cyl_bessel_i_prime(fr, lr);
1400 test::cyl_bessel_i_prime(i, s);
1401 test::cyl_bessel_k_prime(fr, lr);
1402 test::cyl_bessel_k_prime(i, s);
1403 test::sph_bessel_prime(i, fr);
1404 test::sph_bessel_prime(i, 1);
1405 test::sph_neumann_prime(i, lr);
1406 test::sph_neumann_prime(i, i);
1407 test::airy_ai(i);
1408 test::airy_bi(i);
1409 test::airy_ai_prime(i);
1410 test::airy_bi_prime(i);
1411 test::owens_t(fr, dr);
1412 test::owens_t(i, s);
1413#endif
1414#endif
1415}
1416
1417
1418#endif // BOOST_LIBS_MATH_TEST_INSTANTIATE_HPP