test_gamma.hpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. // Copyright John Maddock 2006.
  2. // Copyright Paul A. Bristow 2007, 2009
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #define BOOST_MATH_OVERFLOW_ERROR_POLICY ignore_error
  7. #include <boost/math/concepts/real_concept.hpp>
  8. #include <boost/math/special_functions/math_fwd.hpp>
  9. #define BOOST_TEST_MAIN
  10. #include <boost/test/unit_test.hpp>
  11. #include <boost/test/tools/floating_point_comparison.hpp>
  12. #include <boost/math/tools/stats.hpp>
  13. #include <boost/math/tools/test.hpp>
  14. #include <boost/math/constants/constants.hpp>
  15. #include <boost/type_traits/is_floating_point.hpp>
  16. #include <boost/array.hpp>
  17. #include "functor.hpp"
  18. #include "handle_test_result.hpp"
  19. #include "table_type.hpp"
  20. #ifndef SC_
  21. #define SC_(x) static_cast<typename table_type<T>::type>(BOOST_JOIN(x, L))
  22. #endif
  23. template <class Real, class T>
  24. void do_test_gamma(const T& data, const char* type_name, const char* test_name)
  25. {
  26. #if !(defined(ERROR_REPORTING_MODE) && (!defined(TGAMMA_FUNCTION_TO_TEST) || !defined(LGAMMA_FUNCTION_TO_TEST)))
  27. typedef Real value_type;
  28. typedef value_type (*pg)(value_type);
  29. #ifdef TGAMMA_FUNCTION_TO_TEST
  30. pg funcp = TGAMMA_FUNCTION_TO_TEST;
  31. #elif defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS)
  32. pg funcp = boost::math::tgamma<value_type>;
  33. #else
  34. pg funcp = boost::math::tgamma;
  35. #endif
  36. boost::math::tools::test_result<value_type> result;
  37. std::cout << "Testing " << test_name << " with type " << type_name
  38. << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
  39. //
  40. // test tgamma against data:
  41. //
  42. result = boost::math::tools::test_hetero<Real>(
  43. data,
  44. bind_func<Real>(funcp, 0),
  45. extract_result<Real>(1));
  46. handle_test_result(result, data[result.worst()], result.worst(), type_name, "tgamma", test_name);
  47. //
  48. // test lgamma against data:
  49. //
  50. #ifdef LGAMMA_FUNCTION_TO_TEST
  51. funcp = LGAMMA_FUNCTION_TO_TEST;
  52. #elif defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS)
  53. funcp = boost::math::lgamma<value_type>;
  54. #else
  55. funcp = boost::math::lgamma;
  56. #endif
  57. result = boost::math::tools::test_hetero<Real>(
  58. data,
  59. bind_func<Real>(funcp, 0),
  60. extract_result<Real>(2));
  61. handle_test_result(result, data[result.worst()], result.worst(), type_name, "lgamma", test_name);
  62. std::cout << std::endl;
  63. #endif
  64. }
  65. template <class Real, class T>
  66. void do_test_gammap1m1(const T& data, const char* type_name, const char* test_name)
  67. {
  68. #if !(defined(ERROR_REPORTING_MODE) && !defined(TGAMMA1PM1_FUNCTION_TO_TEST))
  69. typedef Real value_type;
  70. typedef value_type (*pg)(value_type);
  71. #ifdef TGAMMA1PM1_FUNCTION_TO_TEST
  72. pg funcp = TGAMMA1PM1_FUNCTION_TO_TEST;
  73. #elif defined(BOOST_MATH_NO_DEDUCED_FUNCTION_POINTERS)
  74. pg funcp = boost::math::tgamma1pm1<value_type>;
  75. #else
  76. pg funcp = boost::math::tgamma1pm1;
  77. #endif
  78. boost::math::tools::test_result<value_type> result;
  79. std::cout << "Testing " << test_name << " with type " << type_name
  80. << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
  81. //
  82. // test tgamma1pm1 against data:
  83. //
  84. result = boost::math::tools::test_hetero<Real>(
  85. data,
  86. bind_func<Real>(funcp, 0),
  87. extract_result<Real>(1));
  88. handle_test_result(result, data[result.worst()], result.worst(), type_name, "tgamma1pm1", test_name);
  89. std::cout << std::endl;
  90. #endif
  91. }
  92. template <class T>
  93. void test_gamma(T, const char* name)
  94. {
  95. //
  96. // The actual test data is rather verbose, so it's in a separate file
  97. //
  98. // The contents are as follows, each row of data contains
  99. // three items, input value, gamma and lgamma:
  100. //
  101. // gamma and lgamma at integer and half integer values:
  102. // boost::array<boost::array<T, 3>, N> factorials;
  103. //
  104. // gamma and lgamma for z near 0:
  105. // boost::array<boost::array<T, 3>, N> near_0;
  106. //
  107. // gamma and lgamma for z near 1:
  108. // boost::array<boost::array<T, 3>, N> near_1;
  109. //
  110. // gamma and lgamma for z near 2:
  111. // boost::array<boost::array<T, 3>, N> near_2;
  112. //
  113. // gamma and lgamma for z near -10:
  114. // boost::array<boost::array<T, 3>, N> near_m10;
  115. //
  116. // gamma and lgamma for z near -55:
  117. // boost::array<boost::array<T, 3>, N> near_m55;
  118. //
  119. // The last two cases are chosen more or less at random,
  120. // except that one is even and the other odd, and both are
  121. // at negative poles. The data near zero also tests near
  122. // a pole, the data near 1 and 2 are to probe lgamma as
  123. // the result -> 0.
  124. //
  125. # include "test_gamma_data.ipp"
  126. do_test_gamma<T>(factorials, name, "factorials");
  127. do_test_gamma<T>(near_0, name, "near 0");
  128. do_test_gamma<T>(near_1, name, "near 1");
  129. do_test_gamma<T>(near_2, name, "near 2");
  130. do_test_gamma<T>(near_m10, name, "near -10");
  131. do_test_gamma<T>(near_m55, name, "near -55");
  132. //
  133. // And now tgamma1pm1 which computes gamma(1+dz)-1:
  134. //
  135. do_test_gammap1m1<T>(gammap1m1_data, name, "tgamma1pm1(dz)");
  136. }
  137. template <class T>
  138. void test_spots(T, const char* name)
  139. {
  140. BOOST_MATH_STD_USING
  141. std::cout << "Testing type " << name << std::endl;
  142. //
  143. // basic sanity checks, tolerance is 50 epsilon expressed as a percentage:
  144. //
  145. T tolerance = boost::math::tools::epsilon<T>() * 5000;
  146. //
  147. // Extra tolerance for real_concept checks which use less accurate code:
  148. //
  149. T extra_tol = boost::is_floating_point<T>::value ? 1 : 20;
  150. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(3.5)), static_cast<T>(3.3233509704478425511840640312646472177454052302295L), tolerance);
  151. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(0.125)), static_cast<T>(7.5339415987976119046992298412151336246104195881491L), tolerance);
  152. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(-0.125)), static_cast<T>(-8.7172188593831756100190140408231437691829605421405L), tolerance);
  153. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(-3.125)), static_cast<T>(1.1668538708507675587790157356605097019141636072094L), tolerance);
  154. // Lower tolerance on this one, is only really needed on Linux x86 systems, result is mostly down to std lib accuracy:
  155. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(-53249.0 / 1024)), static_cast<T>(-1.2646559519067605488251406578743995122462767733517e-65L), tolerance * 3);
  156. // Very small values, from a bug report by Rocco Romeo:
  157. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -12)), static_cast<T>(4095.42302574977164107280305038926932586783813167844235368772L), tolerance);
  158. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -14)), static_cast<T>(16383.4228446989052821887834066513143241996925504706815681204L), tolerance * 2);
  159. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -25)), static_cast<T>(3.35544314227843645746319656372890833248893111091576093784981e7L), tolerance);
  160. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -27)), static_cast<T>(1.34217727422784342467508497080056807355928046680073490038257e8L), tolerance);
  161. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -29)), static_cast<T>(5.36870911422784336940727488260481582524683632281496706906706e8L), tolerance);
  162. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -35)), static_cast<T>(3.43597383674227843351272524573929605605651956475300480712955e10L), tolerance);
  163. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -54)), static_cast<T>(1.80143985094819834227843350984671942971248427509141008005685e16L), tolerance);
  164. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -64)), static_cast<T>(1.84467440737095516154227843350984671394471047428598176073616e19L), tolerance);
  165. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -66)), static_cast<T>(7.37869762948382064634227843350984671394068921181531525785592922800e19L), tolerance);
  166. BOOST_CHECK_CLOSE(::boost::math::tgamma(ldexp(static_cast<T>(1), -33)), static_cast<T>(8.58993459142278433521360841138215453639282914047157884932317481977e9L), tolerance);
  167. BOOST_CHECK_CLOSE(::boost::math::tgamma(4 / boost::math::tools::max_value<T>()), boost::math::tools::max_value<T>() / 4, tolerance);
  168. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -12)), static_cast<T>(-4096.57745718775464971331294488248972086965434176847741450728L), tolerance);
  169. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -14)), static_cast<T>(-16384.5772760354695939336148831283410381037202353359487504624L), tolerance * 2);
  170. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -25)), static_cast<T>(-3.35544325772156943776992988569766723938420508937071533029983e7L), tolerance);
  171. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -27)), static_cast<T>(-1.34217728577215672270574319043497450577151370942651414968627e8L), tolerance);
  172. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -29)), static_cast<T>(-5.36870912577215666743793215770406791630514293641886249382012e8L), tolerance);
  173. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -34)), static_cast<T>(-1.71798691845772156649591034966100693794360502123447124928244e10L), tolerance);
  174. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -54)), static_cast<T>(-1.80143985094819845772156649015329155101490229157245556564920e16L), tolerance);
  175. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -64)), static_cast<T>(-1.84467440737095516165772156649015328606601289230246224694513e19L), tolerance);
  176. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -66)), static_cast<T>(-7.37869762948382064645772156649015328606199162983179574406439e19L), tolerance);
  177. BOOST_CHECK_CLOSE(::boost::math::tgamma(-ldexp(static_cast<T>(1), -33)), static_cast<T>(-8.58993459257721566501667413261977598620193488449233402857632e9L), tolerance);
  178. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 / boost::math::tools::max_value<T>()), -boost::math::tools::max_value<T>() / 4, tolerance);
  179. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 + ldexp(static_cast<T>(1), -22)), static_cast<T>(-4.19430442278467170746130758391572421252211886167956799318843e6L), tolerance);
  180. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 - ldexp(static_cast<T>(1), -22)), static_cast<T>(4.19430357721600151046968956086404748206205391186399889108944e6L), tolerance);
  181. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 + ldexp(static_cast<T>(1), -20)), static_cast<T>(43690.7294216755534842491085530510391932288379640970386378756L), tolerance * extra_tol);
  182. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 - ldexp(static_cast<T>(1), -20)), static_cast<T>(-43690.6039118698506165317137699180871126338425941292693705533L), tolerance * extra_tol);
  183. if(boost::math::tools::digits<T>() > 50)
  184. {
  185. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 + ldexp(static_cast<T>(1), -44)), static_cast<T>(-1.75921860444164227843350985473932247549232492467032584051825e13L), tolerance);
  186. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 - ldexp(static_cast<T>(1), -44)), static_cast<T>(1.75921860444155772156649016131144377791001546933519242218430e13L), tolerance);
  187. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 + ldexp(static_cast<T>(1), -44)), static_cast<T>(7.33007751850729421569517998006564998020333048893618664936994e11L), tolerance * extra_tol);
  188. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 - ldexp(static_cast<T>(1), -44)), static_cast<T>(-7.33007751850603911763815347967171096249288790373790093559568e11L), tolerance * extra_tol);
  189. }
  190. if(boost::math::tools::digits<T>() > 60)
  191. {
  192. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 + ldexp(static_cast<T>(1), -55)), static_cast<T>(-3.60287970189639684227843350984671785799289582631555600561524e16L), tolerance);
  193. BOOST_CHECK_CLOSE(::boost::math::tgamma(-1 - ldexp(static_cast<T>(1), -55)), static_cast<T>(3.60287970189639675772156649015328997929531384279596450489170e16L), tolerance * 3);
  194. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 + ldexp(static_cast<T>(1), -55)), static_cast<T>(1.50119987579016539608823618465835611632004877549994080474627e15L), tolerance * extra_tol);
  195. BOOST_CHECK_CLOSE(::boost::math::tgamma(-4 - ldexp(static_cast<T>(1), -55)), static_cast<T>(-1.50119987579016527057843048200831672241827850458884790004313e15L), tolerance * extra_tol);
  196. }
  197. #ifdef BOOST_MSVC
  198. #pragma warning(push)
  199. #pragma warning(disable:4127)
  200. #endif
  201. // Test bug fixes in tgamma:
  202. if(std::numeric_limits<T>::max_exponent10 > 244)
  203. {
  204. BOOST_CHECK_CLOSE(::boost::math::tgamma(static_cast<T>(142.75)), static_cast<T>(7.8029496083318133344429227511387928576820621466e244L), tolerance * 4);
  205. }
  206. #ifdef BOOST_MSVC
  207. #pragma warning(pop)
  208. #endif
  209. // An extra fudge factor for real_concept which has a less accurate tgamma:
  210. T tolerance_tgamma_extra = std::numeric_limits<T>::is_specialized ? 1 : 10;
  211. int sign = 1;
  212. BOOST_CHECK_CLOSE(::boost::math::lgamma(static_cast<T>(3.5), &sign), static_cast<T>(1.2009736023470742248160218814507129957702389154682L), tolerance);
  213. BOOST_CHECK(sign == 1);
  214. BOOST_CHECK_CLOSE(::boost::math::lgamma(static_cast<T>(0.125), &sign), static_cast<T>(2.0194183575537963453202905211670995899482809521344L), tolerance);
  215. BOOST_CHECK(sign == 1);
  216. BOOST_CHECK_CLOSE(::boost::math::lgamma(static_cast<T>(-0.125), &sign), static_cast<T>(2.1653002489051702517540619481440174064962195287626L), tolerance);
  217. BOOST_CHECK(sign == -1);
  218. BOOST_CHECK_CLOSE(::boost::math::lgamma(static_cast<T>(-3.125), &sign), static_cast<T>(0.1543111276840418242676072830970532952413339012367L), tolerance * tolerance_tgamma_extra);
  219. BOOST_CHECK(sign == 1);
  220. BOOST_CHECK_CLOSE(::boost::math::lgamma(static_cast<T>(-53249.0 / 1024), &sign), static_cast<T>(-149.43323093420259741100038126078721302600128285894L), tolerance);
  221. BOOST_CHECK(sign == -1);
  222. // Very small values, from a bug report by Rocco Romeo:
  223. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -12), &sign), log(static_cast<T>(4095.42302574977164107280305038926932586783813167844235368772L)), tolerance);
  224. BOOST_CHECK(sign == 1);
  225. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -14), &sign), log(static_cast<T>(16383.4228446989052821887834066513143241996925504706815681204L)), tolerance);
  226. BOOST_CHECK(sign == 1);
  227. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -25), &sign), log(static_cast<T>(3.35544314227843645746319656372890833248893111091576093784981e7L)), tolerance);
  228. BOOST_CHECK(sign == 1);
  229. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -27), &sign), log(static_cast<T>(1.34217727422784342467508497080056807355928046680073490038257e8L)), tolerance);
  230. BOOST_CHECK(sign == 1);
  231. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -29), &sign), log(static_cast<T>(5.36870911422784336940727488260481582524683632281496706906706e8L)), tolerance);
  232. BOOST_CHECK(sign == 1);
  233. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -35), &sign), log(static_cast<T>(3.43597383674227843351272524573929605605651956475300480712955e10L)), tolerance);
  234. BOOST_CHECK(sign == 1);
  235. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -54), &sign), log(static_cast<T>(1.80143985094819834227843350984671942971248427509141008005685e16L)), tolerance);
  236. BOOST_CHECK(sign == 1);
  237. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -64), &sign), log(static_cast<T>(1.84467440737095516154227843350984671394471047428598176073616e19L)), tolerance);
  238. BOOST_CHECK(sign == 1);
  239. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -66), &sign), log(static_cast<T>(7.37869762948382064634227843350984671394068921181531525785592922800e19L)), tolerance);
  240. BOOST_CHECK(sign == 1);
  241. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(1), -33), &sign), log(static_cast<T>(8.58993459142278433521360841138215453639282914047157884932317481977e9L)), tolerance);
  242. BOOST_CHECK(sign == 1);
  243. BOOST_CHECK_CLOSE(::boost::math::lgamma(4 / boost::math::tools::max_value<T>(), &sign), log(boost::math::tools::max_value<T>() / 4), tolerance);
  244. BOOST_CHECK(sign == 1);
  245. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -12), &sign), log(-static_cast<T>(-4096.57745718775464971331294488248972086965434176847741450728L)), tolerance);
  246. BOOST_CHECK(sign == -1);
  247. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -14), &sign), log(-static_cast<T>(-16384.5772760354695939336148831283410381037202353359487504624L)), tolerance);
  248. BOOST_CHECK(sign == -1);
  249. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -25), &sign), log(-static_cast<T>(-3.35544325772156943776992988569766723938420508937071533029983e7L)), tolerance);
  250. BOOST_CHECK(sign == -1);
  251. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -27), &sign), log(-static_cast<T>(-1.34217728577215672270574319043497450577151370942651414968627e8L)), tolerance);
  252. BOOST_CHECK(sign == -1);
  253. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -29), &sign), log(-static_cast<T>(-5.36870912577215666743793215770406791630514293641886249382012e8L)), tolerance);
  254. BOOST_CHECK(sign == -1);
  255. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -34), &sign), log(-static_cast<T>(-1.71798691845772156649591034966100693794360502123447124928244e10L)), tolerance);
  256. BOOST_CHECK(sign == -1);
  257. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -54), &sign), log(-static_cast<T>(-1.80143985094819845772156649015329155101490229157245556564920e16L)), tolerance);
  258. BOOST_CHECK(sign == -1);
  259. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -64), &sign), log(-static_cast<T>(-1.84467440737095516165772156649015328606601289230246224694513e19L)), tolerance);
  260. BOOST_CHECK(sign == -1);
  261. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -66), &sign), log(-static_cast<T>(-7.37869762948382064645772156649015328606199162983179574406439e19L)), tolerance);
  262. BOOST_CHECK(sign == -1);
  263. BOOST_CHECK_CLOSE(::boost::math::lgamma(-ldexp(static_cast<T>(1), -33), &sign), log(-static_cast<T>(-8.58993459257721566501667413261977598620193488449233402857632e9L)), tolerance);
  264. BOOST_CHECK(sign == -1);
  265. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 / boost::math::tools::max_value<T>(), &sign), log(boost::math::tools::max_value<T>() / 4), tolerance);
  266. BOOST_CHECK(sign == -1);
  267. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 + ldexp(static_cast<T>(1), -22), &sign), log(static_cast<T>(4.19430442278467170746130758391572421252211886167956799318843e6L)), tolerance);
  268. BOOST_CHECK(sign == -1);
  269. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 - ldexp(static_cast<T>(1), -22), &sign), log(static_cast<T>(4.19430357721600151046968956086404748206205391186399889108944e6L)), tolerance);
  270. BOOST_CHECK(sign == 1);
  271. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 + ldexp(static_cast<T>(1), -20), &sign), log(static_cast<T>(43690.7294216755534842491085530510391932288379640970386378756L)), tolerance * extra_tol);
  272. BOOST_CHECK(sign == 1);
  273. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 - ldexp(static_cast<T>(1), -20), &sign), log(static_cast<T>(43690.6039118698506165317137699180871126338425941292693705533L)), tolerance * extra_tol);
  274. BOOST_CHECK(sign == -1);
  275. if(boost::math::tools::digits<T>() > 50)
  276. {
  277. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 + ldexp(static_cast<T>(1), -44), &sign), log(static_cast<T>(1.75921860444164227843350985473932247549232492467032584051825e13L)), tolerance);
  278. BOOST_CHECK(sign == -1);
  279. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 - ldexp(static_cast<T>(1), -44), &sign), log(static_cast<T>(1.75921860444155772156649016131144377791001546933519242218430e13L)), tolerance);
  280. BOOST_CHECK(sign == 1);
  281. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 + ldexp(static_cast<T>(1), -44), &sign), log(static_cast<T>(7.33007751850729421569517998006564998020333048893618664936994e11L)), tolerance * extra_tol);
  282. BOOST_CHECK(sign == 1);
  283. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 - ldexp(static_cast<T>(1), -44), &sign), log(static_cast<T>(7.33007751850603911763815347967171096249288790373790093559568e11L)), tolerance * extra_tol);
  284. BOOST_CHECK(sign == -1);
  285. }
  286. if(boost::math::tools::digits<T>() > 60)
  287. {
  288. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 + ldexp(static_cast<T>(1), -55), &sign), log(static_cast<T>(3.60287970189639684227843350984671785799289582631555600561524e16L)), tolerance);
  289. BOOST_CHECK(sign == -1);
  290. BOOST_CHECK_CLOSE(::boost::math::lgamma(-1 - ldexp(static_cast<T>(1), -55), &sign), log(static_cast<T>(3.60287970189639675772156649015328997929531384279596450489170e16L)), tolerance);
  291. BOOST_CHECK(sign == 1);
  292. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 + ldexp(static_cast<T>(1), -55), &sign), log(static_cast<T>(1.50119987579016539608823618465835611632004877549994080474627e15L)), tolerance * extra_tol);
  293. BOOST_CHECK(sign == 1);
  294. BOOST_CHECK_CLOSE(::boost::math::lgamma(-4 - ldexp(static_cast<T>(1), -55), &sign), log(static_cast<T>(1.50119987579016527057843048200831672241827850458884790004313e15L)), tolerance * extra_tol);
  295. BOOST_CHECK(sign == -1);
  296. }
  297. if(std::numeric_limits<T>::has_denorm && std::numeric_limits<T>::has_infinity && (boost::math::isinf)(1 / std::numeric_limits<T>::denorm_min()))
  298. {
  299. BOOST_CHECK_EQUAL(boost::math::tgamma(-std::numeric_limits<T>::denorm_min()), -std::numeric_limits<T>::infinity());
  300. BOOST_CHECK_EQUAL(boost::math::tgamma(std::numeric_limits<T>::denorm_min()), std::numeric_limits<T>::infinity());
  301. }
  302. //
  303. // Extra large values for lgamma, see https://github.com/boostorg/math/issues/242
  304. //
  305. if (boost::math::tools::digits<T>() >= std::numeric_limits<double>::digits)
  306. {
  307. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(11103367432951928LL), 32)), static_cast<T>(2.7719825960021351251696385101478518546793793286704974382373670822285114741208958e27L), tolerance);
  308. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(11103367432951928LL), 62)), static_cast<T>(4.0411767712186990905102512019058204792570873633363159e36L), tolerance);
  309. BOOST_CHECK_CLOSE(::boost::math::lgamma(ldexp(static_cast<T>(11103367432951928LL), 326)), static_cast<T>(3.9754720509185529233002820161357111676582583112671658e116L), tolerance);
  310. }
  311. }