2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-17 13:52:15 +00:00

Hypergeometric: Begin fixing errors from large params in 1F1

This commit is contained in:
jzmaddock
2018-01-20 17:48:51 +00:00
parent 5a1f4d90ba
commit da9d77ef2e
7 changed files with 191 additions and 30 deletions

View File

@@ -64,13 +64,13 @@ BOOST_AUTO_TEST_CASE( test_main )
#endif
test_spots(0.0, "double");
#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
test_spots(0.0L, "long double");
//test_spots(0.0L, "long double");
#ifndef BOOST_MATH_NO_REAL_CONCEPT_TESTS
test_spots(boost::math::concepts::real_concept(0.1), "real_concept");
//test_spots(boost::math::concepts::real_concept(0.1), "real_concept");
#endif
#endif
test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
test_spots(dec_40(), "dec_40");
//test_spots(boost::multiprecision::cpp_bin_float_quad(), "cpp_bin_float_quad");
//test_spots(dec_40(), "dec_40");
}