1 ///////////////////////////////////////////////////////////////
2 // Copyright 2011 John Maddock. Distributed under the Boost
3 // Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
5
6 #include "../sf_performance.hpp"
7
basic_tests_9()8 void basic_tests_9()
9 {
10 #ifdef TEST_FLOAT
11 time_proc("Bessel Functions (16 digit precision)", "double", test_bessel<double>);
12 time_proc("Bessel Functions (16 digit precision)", "real_concept", test_bessel<boost::math::concepts::real_concept>);
13 time_proc("Bessel Functions (16 digit precision)", "arithmetic_backend<double>", test_bessel<number<arithmetic_backend<double>, et_on> >);
14 time_proc("Bessel Functions (16 digit precision)", "arithmetic_backend<double> - no expression templates", test_bessel<number<arithmetic_backend<double>, et_off> >);
15
16 time_proc("Non-central T (16 digit precision)", "double", test_nct<double>);
17 time_proc("Non-central T (16 digit precision)", "real_concept", test_nct<boost::math::concepts::real_concept>);
18 time_proc("Non-central T (16 digit precision)", "arithmetic_backend<double>", test_nct<number<arithmetic_backend<double>, et_on> >);
19 time_proc("Non-central T (16 digit precision)", "arithmetic_backend<double> - no expression templates", test_nct<number<arithmetic_backend<double>, et_off> >);
20 #endif
21 }
22