// Copyright John Maddock 2006. // Copyright Paul A. Bristow 2007, 2009 // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #define BOOST_MATH_OVERFLOW_ERROR_POLICY ignore_error #include #include #define BOOST_TEST_MAIN #include #include #include #include #include #include #include #include #include "functor.hpp" #include "handle_test_result.hpp" #include "table_type.hpp" #include #include #ifdef _MSC_VER #pragma warning(disable:4127) #endif template void do_test_1F1(const T& data, const char* type_name, const char* test_name) { typedef Real value_type; typedef value_type(*pg)(value_type, value_type, value_type); #if defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS) pg funcp = boost::math::log_hypergeometric_1F1; #else pg funcp = boost::math::log_hypergeometric_1F1; #endif boost::math::tools::test_result result; std::cout << "Testing " << test_name << " with type " << type_name << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"; // // test hypergeometric_2F0 against data: // result = boost::math::tools::test_hetero( data, bind_func(funcp, 0, 1, 2), extract_result(3)); handle_test_result(result, data[result.worst()], result.worst(), type_name, "log_hypergeometric_1F1", test_name); std::cout << std::endl; } #ifndef SC_ #define SC_(x) BOOST_MATH_BIG_CONSTANT(T, 1000000, x) #endif template void test_spots1(T, const char* type_name) { #include "hypergeometric_1f1_log_large.ipp" do_test_1F1(hypergeometric_1f1_log_large, type_name, "Large random values - log"); } template void test_spots2(T, const char* type_name) { #include "hypergeometric_1f1_log_large_unsolved.ipp" do_test_1F1(hypergeometric_1f1_log_large_unsolved, type_name, "Large random values - log - unsolved"); } template void test_sign(T, const char* type_name) { #include "hypergeometric_1F1_small_random.ipp" for (unsigned i = 0; i < hypergeometric_1F1_small_random.size(); ++i) { int s; boost::math::log_hypergeometric_1F1(hypergeometric_1F1_small_random[i][0], hypergeometric_1F1_small_random[i][1], hypergeometric_1F1_small_random[i][2], &s); BOOST_CHECK_EQUAL(s, boost::math::sign(hypergeometric_1F1_small_random[i][3])); } } template void test_spots_bugs(T, const char* type_name) { static const std::array, 7> hypergeometric_1F1_bugs = { { // Found while investigating https://github.com/boostorg/math/issues/1034 {{ 21156.0f, 21156.0f, 11322, SC_(11322.0)}}, {{ 21156.0f, 21155.0f, 11322, SC_(11322.428655862323560632951631114666466652986288119296800531328684)}}, {{ 21156.0f, 21154.0f, 11322, SC_(11322.857338938931770780542471014439235046236959098048505808665509)}}, {{ 21156.0f, 21154.5f, 11322, SC_(11322.642993998700652342915766513423502332460377941025163971463001)}}, {{ 21156.0f, 21155.0f - 1.0f / 128, 11322, SC_(11322.43200484338133063401686149227756707)}}, {{ 21156.0f, 21154.5f - 1.0f / 128, 11322, SC_(11322.646343086066466097278446364687150256282052775170519455915995)}}, {{ 21156.0f, 21154.0f + 1.0f / 128, 11322, SC_(11322.85398974691465958225700429672975704)}}, } }; do_test_1F1(hypergeometric_1F1_bugs, type_name, "Large random values - log - bug cases"); } template void test_spots(T z, const char* type_name) { test_spots1(z, type_name); test_spots_bugs(z, type_name); test_sign(z, type_name); #ifdef TEST_UNSOLVED test_spots2(z, type_name); #endif }