1 // Copyright John Maddock 2008. 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/distributions/non_central_beta.hpp> 7 // #includes all the files that it needs to. 8 // 9 // This must appear *before* any #includes, and precludes pch usage: 10 // 11 #define BOOST_MATH_ASSERT_UNDEFINED_POLICY false 12 // 13 #include <boost/math/distributions/non_central_beta.hpp> 14 // 15 // Note this header includes no other headers, this is 16 // important if this test is to be meaningful: 17 // 18 #include "test_compile_result.hpp" 19 compile_and_link_test()20void compile_and_link_test() 21 { 22 TEST_DIST_FUNC(non_central_beta) 23 } 24 25 template class boost::math::non_central_beta_distribution<float, boost::math::policies::policy<> >; 26 template class boost::math::non_central_beta_distribution<double, boost::math::policies::policy<> >; 27 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS 28 template class boost::math::non_central_beta_distribution<long double, boost::math::policies::policy<> >; 29 #endif 30