1 // Copyright John Maddock 2006.
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 // Basic sanity check that header <boost/math/special_functions/spherical_harmonic.hpp>
7 // #includes all the files that it needs to.
8 //
9 #include <boost/math/special_functions/spherical_harmonic.hpp>
10 //
11 // Note this header includes no other headers, this is
12 // important if this test is to be meaningful:
13 //
check_result_imp(std::complex<float>,std::complex<float>)14 inline void check_result_imp(std::complex<float>, std::complex<float>){}
check_result_imp(std::complex<double>,std::complex<double>)15 inline void check_result_imp(std::complex<double>, std::complex<double>){}
check_result_imp(std::complex<long double>,std::complex<long double>)16 inline void check_result_imp(std::complex<long double>, std::complex<long double>){}
17
18 #include "test_compile_result.hpp"
19
20
21
compile_and_link_test()22 void compile_and_link_test()
23 {
24 check_result<std::complex<float> >(boost::math::spherical_harmonic<float>(u, i, f, f));
25 check_result<std::complex<double> >(boost::math::spherical_harmonic<double>(u, i, d, d));
26 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
27 check_result<std::complex<long double> >(boost::math::spherical_harmonic<long double>(u, i, l, l));
28 #endif
29
30 check_result<float>(boost::math::spherical_harmonic_r<float>(u, i, f, f));
31 check_result<double>(boost::math::spherical_harmonic_r<double>(u, i, d, d));
32 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
33 check_result<long double>(boost::math::spherical_harmonic_r<long double>(u, i, l, l));
34 #endif
35
36 check_result<float>(boost::math::spherical_harmonic_i<float>(u, i, f, f));
37 check_result<double>(boost::math::spherical_harmonic_i<double>(u, i, d, d));
38 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
39 check_result<long double>(boost::math::spherical_harmonic_i<long double>(u, i, l, l));
40 #endif
41 }
42
43
44