• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  (C) 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 #include "test_1F0.hpp"
7 
8 #include <boost/multiprecision/cpp_bin_float.hpp>
9 #include <boost/multiprecision/cpp_dec_float.hpp>
10 
11 
BOOST_AUTO_TEST_CASE(test_main)12 BOOST_AUTO_TEST_CASE( test_main )
13 {
14 #ifndef BOOST_MATH_BUGGY_LARGE_FLOAT_CONSTANTS
15    test_spots(0.0F);
16 #endif
17    test_spots(0.0);
18 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
19    test_spots(0.0L);
20 #ifndef BOOST_MATH_NO_REAL_CONCEPT_TESTS
21    test_spots(boost::math::concepts::real_concept(0.1));
22 #endif
23 #endif
24    test_spots(boost::multiprecision::cpp_bin_float_quad());
25    test_spots(boost::multiprecision::cpp_dec_float_50());
26 }
27 
28 
29 
30