brintos

brintos / llvm-project-archived public Read only

0
0
Text · 277.5 KiB · e8e9420 Raw
4643 lines · plain
1//  Copyright Takuma Yoshimura 2024.2//  Copyright Matt Borland 20243//  Use, modification and distribution are subject to the4//  Boost Software License, Version 1.0. (See accompanying file5//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)6 7#ifndef BOOST_STATS_LANDAU_HPP8#define BOOST_STATS_LANDAU_HPP9 10#ifdef _MSC_VER11#pragma warning(push)12#pragma warning(disable : 4127) // conditional expression is constant13#endif14 15#include <boost/math/tools/config.hpp>16#include <boost/math/tools/numeric_limits.hpp>17#include <boost/math/tools/tuple.hpp>18#include <boost/math/tools/type_traits.hpp>19#include <boost/math/constants/constants.hpp>20#include <boost/math/distributions/complement.hpp>21#include <boost/math/distributions/detail/common_error_handling.hpp>22#include <boost/math/distributions/detail/derived_accessors.hpp>23#include <boost/math/tools/rational.hpp>24#include <boost/math/policies/policy.hpp>25#include <boost/math/policies/error_handling.hpp>26#include <boost/math/tools/promotion.hpp>27 28#ifndef BOOST_MATH_HAS_NVRTC29#include <boost/math/distributions/fwd.hpp>30#include <boost/math/tools/big_constant.hpp>31#include <utility>32#include <cmath>33#endif34 35namespace boost { namespace math {36template <class RealType, class Policy>37class landau_distribution;38 39namespace detail {40 41template <class RealType>42BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_plus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 53>&)43{44    BOOST_MATH_STD_USING45    RealType result;46 47    if (x < 1) {48        // Rational Approximation49        // Maximum Relative Error: 6.1179e-1850        BOOST_MATH_STATIC const RealType P[8] = {51            static_cast<RealType>(2.62240126375351657026e-1),52            static_cast<RealType>(3.37943593381366824691e-1),53            static_cast<RealType>(1.53537606095123787618e-1),54            static_cast<RealType>(3.01423783265555668011e-2),55            static_cast<RealType>(2.66982581491576132363e-3),56            static_cast<RealType>(-1.57344124519315009970e-5),57            static_cast<RealType>(3.46237168332264544791e-7),58            static_cast<RealType>(2.54512306953704347532e-8),59        };60        BOOST_MATH_STATIC const RealType Q[7] = {61            static_cast<RealType>(1.),62            static_cast<RealType>(1.61596691542333069131e0),63            static_cast<RealType>(1.31560197919990191004e0),64            static_cast<RealType>(6.37865139714920275881e-1),65            static_cast<RealType>(1.99051021258743986875e-1),66            static_cast<RealType>(3.73788085017437528274e-2),67            static_cast<RealType>(3.72580876403774116752e-3),68        };69 70        result = tools::evaluate_polynomial(P, x) / tools::evaluate_polynomial(Q, x);71    }72    else if(x < 2){73        RealType t = x - 1;74 75        // Rational Approximation76        // Maximum Relative Error: 2.1560e-1777        BOOST_MATH_STATIC const RealType P[6] = {78            static_cast<RealType>(1.63531240868022603476e-1),79            static_cast<RealType>(1.42818648212508067982e-1),80            static_cast<RealType>(4.95816076364679661943e-2),81            static_cast<RealType>(8.59234710489723831273e-3),82            static_cast<RealType>(5.76649181954629544285e-4),83            static_cast<RealType>(-5.66279925274108366994e-7),84        };85        BOOST_MATH_STATIC const RealType Q[7] = {86            static_cast<RealType>(1.),87            static_cast<RealType>(1.41478104966077351483e0),88            static_cast<RealType>(9.41180365857002724714e-1),89            static_cast<RealType>(3.65084346985789448244e-1),90            static_cast<RealType>(8.77396986274371571301e-2),91            static_cast<RealType>(1.24233749817860139205e-2),92            static_cast<RealType>(8.57476298543168142524e-4),93        };94 95        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);96    }97    else if (x < 4) {98        RealType t = x - 2;99 100        // Rational Approximation101        // Maximum Relative Error: 9.1732e-19102        BOOST_MATH_STATIC const RealType P[8] = {103            static_cast<RealType>(9.55242261334771588094e-2),104            static_cast<RealType>(6.66529732353979943139e-2),105            static_cast<RealType>(1.80958840194356287100e-2),106            static_cast<RealType>(2.34205449064047793618e-3),107            static_cast<RealType>(1.16859089123286557482e-4),108            static_cast<RealType>(-1.48761065213531458940e-7),109            static_cast<RealType>(4.37245276130361710865e-9),110            static_cast<RealType>(-8.10479404400603805292e-11),111        };112        BOOST_MATH_STATIC const RealType Q[7] = {113            static_cast<RealType>(1.),114            static_cast<RealType>(1.21670723402658089612e0),115            static_cast<RealType>(6.58224466688607822769e-1),116            static_cast<RealType>(2.00828142796698077403e-1),117            static_cast<RealType>(3.64962053761472303153e-2),118            static_cast<RealType>(3.76034152661165826061e-3),119            static_cast<RealType>(1.74723754509505656326e-4),120        };121 122        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);123    }124    else if (x < 8) {125        RealType t = x - 4;126 127        // Rational Approximation128        // Maximum Relative Error: 7.6621e-18129        BOOST_MATH_STATIC const RealType P[8] = {130            static_cast<RealType>(3.83643820409470770350e-2),131            static_cast<RealType>(1.97555000044256883088e-2),132            static_cast<RealType>(3.71748668368617282698e-3),133            static_cast<RealType>(3.04022677703754827113e-4),134            static_cast<RealType>(8.76328889784070114569e-6),135            static_cast<RealType>(-3.34900379044743745961e-9),136            static_cast<RealType>(5.36581791174380716937e-11),137            static_cast<RealType>(-5.50656207669255770963e-13),138        };139        BOOST_MATH_STATIC const RealType Q[7] = {140            static_cast<RealType>(1.),141            static_cast<RealType>(9.09290785092251223006e-1),142            static_cast<RealType>(3.49404120360701349529e-1),143            static_cast<RealType>(7.23730835206014275634e-2),144            static_cast<RealType>(8.47875744543245845354e-3),145            static_cast<RealType>(5.28021165718081084884e-4),146            static_cast<RealType>(1.33941126695887244822e-5),147        };148 149        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);150    }151    else if (x < 16) {152        RealType t = x - 8;153 154        // Rational Approximation155        // Maximum Relative Error: 6.6311e-19156        BOOST_MATH_STATIC const RealType P[8] = {157            static_cast<RealType>(1.12656323880287532947e-2),158            static_cast<RealType>(2.87311140580416132088e-3),159            static_cast<RealType>(2.61788674390925516376e-4),160            static_cast<RealType>(9.74096895307400300508e-6),161            static_cast<RealType>(1.19317564431052244154e-7),162            static_cast<RealType>(-6.99543778035110375565e-12),163            static_cast<RealType>(4.33383971045699197233e-14),164            static_cast<RealType>(-1.75185581239955717728e-16),165        };166        BOOST_MATH_STATIC const RealType Q[7] = {167            static_cast<RealType>(1.),168            static_cast<RealType>(4.94430267268436822392e-1),169            static_cast<RealType>(1.00370783567964448346e-1),170            static_cast<RealType>(1.05989564733662652696e-2),171            static_cast<RealType>(6.04942184472254239897e-4),172            static_cast<RealType>(1.72741008294864428917e-5),173            static_cast<RealType>(1.85398104367945191152e-7),174        };175 176        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);177    }178    else if (x < 32) {179        RealType t = x - 16;180 181        // Rational Approximation182        // Maximum Relative Error: 5.6459e-17183        BOOST_MATH_STATIC const RealType P[7] = {184            static_cast<RealType>(2.83847488747490686627e-3),185            static_cast<RealType>(4.95641151588714788287e-4),186            static_cast<RealType>(2.79159792287747766415e-5),187            static_cast<RealType>(5.93951761884139733619e-7),188            static_cast<RealType>(3.89602689555407749477e-9),189            static_cast<RealType>(-4.86595415551823027835e-14),190            static_cast<RealType>(9.68524606019510324447e-17),191        };192        BOOST_MATH_STATIC const RealType Q[7] = {193            static_cast<RealType>(1.),194            static_cast<RealType>(3.01847536766892219351e-1),195            static_cast<RealType>(3.63152433272831196527e-2),196            static_cast<RealType>(2.20938897517130866817e-3),197            static_cast<RealType>(7.05424834024833384294e-5),198            static_cast<RealType>(1.09010608366510938768e-6),199            static_cast<RealType>(6.08711307451776092405e-9),200        };201 202        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);203    }204    else if (x < 64) {205        RealType t = x - 32;206 207        // Rational Approximation208        // Maximum Relative Error: 6.5205e-17209        BOOST_MATH_STATIC const RealType P[6] = {210            static_cast<RealType>(6.85767880395157523315e-4),211            static_cast<RealType>(4.08288098461672797376e-5),212            static_cast<RealType>(8.10640732723079320426e-7),213            static_cast<RealType>(6.10891161505083972565e-9),214            static_cast<RealType>(1.37951861368789813737e-11),215            static_cast<RealType>(-1.25906441382637535543e-17),216        };217        BOOST_MATH_STATIC const RealType Q[7] = {218            static_cast<RealType>(1.),219            static_cast<RealType>(1.23722380864018634550e-1),220            static_cast<RealType>(6.05800403141772433527e-3),221            static_cast<RealType>(1.47809654123655473551e-4),222            static_cast<RealType>(1.84909364620926802201e-6),223            static_cast<RealType>(1.08158235309005492372e-8),224            static_cast<RealType>(2.16335841791921214702e-11),225        };226 227        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);228    }229    else if (ilogb(x) < 8) {230        RealType t = log2(ldexp(x, -6));231 232        // Rational Approximation233        // Maximum Relative Error: 3.5572e-17234        BOOST_MATH_STATIC const RealType P[7] = {235            static_cast<RealType>(6.78613480244945294595e-1),236            static_cast<RealType>(9.61675759893298556080e-1),237            static_cast<RealType>(3.45159462006746978086e-1),238            static_cast<RealType>(6.32803373041761027814e-2),239            static_cast<RealType>(6.93646175256407852991e-3),240            static_cast<RealType>(4.69867700169714338273e-4),241            static_cast<RealType>(1.76219117171149694118e-5),242        };243        BOOST_MATH_STATIC const RealType Q[7] = {244            static_cast<RealType>(1.),245            static_cast<RealType>(1.44693640094228656726e0),246            static_cast<RealType>(5.46298626321591162873e-1),247            static_cast<RealType>(1.01572892952421447864e-1),248            static_cast<RealType>(1.04982575345680980744e-2),249            static_cast<RealType>(7.65591730392359463367e-4),250            static_cast<RealType>(2.69383817793665674679e-5),251        };252 253        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);254    }255    else if (ilogb(x) < 16) {256        RealType t = log2(ldexp(x, -8));257 258        // Rational Approximation259        // Maximum Relative Error: 5.7408e-17260        BOOST_MATH_STATIC const RealType P[9] = {261            static_cast<RealType>(6.51438485661317103070e-1),262            static_cast<RealType>(2.67941671074735988081e-1),263            static_cast<RealType>(5.18564629295719783781e-2),264            static_cast<RealType>(6.18976337233135940231e-3),265            static_cast<RealType>(5.08042228681335953236e-4),266            static_cast<RealType>(2.97268230746003939324e-5),267            static_cast<RealType>(1.24283200336057908183e-6),268            static_cast<RealType>(3.35670921544537716055e-8),269            static_cast<RealType>(5.06987792821954864905e-10),270        };271        BOOST_MATH_STATIC const RealType Q[9] = {272            static_cast<RealType>(1.),273            static_cast<RealType>(4.23792506680780833665e-1),274            static_cast<RealType>(8.17040643791396371682e-2),275            static_cast<RealType>(9.63961713981621216197e-3),276            static_cast<RealType>(8.06584713485725204135e-4),277            static_cast<RealType>(4.62050471704120102023e-5),278            static_cast<RealType>(1.96919734048024406173e-6),279            static_cast<RealType>(5.23890369587103685278e-8),280            static_cast<RealType>(7.99399970089366802728e-10),281        };282 283        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);284    }285    else if (ilogb(x) < 32) {286        RealType t = log2(ldexp(x, -16));287 288        // Rational Approximation289        // Maximum Relative Error: 1.0195e-17290        BOOST_MATH_STATIC const RealType P[10] = {291            static_cast<RealType>(6.36745544906925230102e-1),292            static_cast<RealType>(2.06319686601209029700e-1),293            static_cast<RealType>(3.27498059700133287053e-2),294            static_cast<RealType>(3.30913729536910108000e-3),295            static_cast<RealType>(2.34809665750270531592e-4),296            static_cast<RealType>(1.21234086846551635407e-5),297            static_cast<RealType>(4.55253563898240922019e-7),298            static_cast<RealType>(1.17544434819877511707e-8),299            static_cast<RealType>(1.76754192209232807941e-10),300            static_cast<RealType>(-2.78616504641875874275e-17),301        };302        BOOST_MATH_STATIC const RealType Q[9] = {303            static_cast<RealType>(1.),304            static_cast<RealType>(3.24145654925686670201e-1),305            static_cast<RealType>(5.14350019501887110402e-2),306            static_cast<RealType>(5.19867984016649969928e-3),307            static_cast<RealType>(3.68798608372265018587e-4),308            static_cast<RealType>(1.90449594112666257344e-5),309            static_cast<RealType>(7.15068261954120746192e-7),310            static_cast<RealType>(1.84646096630493837656e-8),311            static_cast<RealType>(2.77636277083994601941e-10),312        };313 314        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);315    }316    else if (ilogb(x) < 64) {317        RealType t = log2(ldexp(x, -32));318 319        // Rational Approximation320        // Maximum Relative Error: 8.0433e-17321        BOOST_MATH_STATIC const RealType P[9] = {322            static_cast<RealType>(6.36619776379492082324e-1),323            static_cast<RealType>(2.68158440168597706495e-1),324            static_cast<RealType>(5.49040993767853738389e-2),325            static_cast<RealType>(7.23458585096723552751e-3),326            static_cast<RealType>(6.85438876301780090281e-4),327            static_cast<RealType>(4.84561891424380633578e-5),328            static_cast<RealType>(2.82092117716081590941e-6),329            static_cast<RealType>(9.57557353473514565245e-8),330            static_cast<RealType>(5.16773829224576217348e-9),331        };332        BOOST_MATH_STATIC const RealType Q[9] = {333            static_cast<RealType>(1.),334            static_cast<RealType>(4.21222294324039934056e-1),335            static_cast<RealType>(8.62431574655015481812e-2),336            static_cast<RealType>(1.13640608906815986975e-2),337            static_cast<RealType>(1.07668486873466248474e-3),338            static_cast<RealType>(7.61148039258802068270e-5),339            static_cast<RealType>(4.43109262308946031382e-6),340            static_cast<RealType>(1.50412757354817481381e-7),341            static_cast<RealType>(8.11746432728995551732e-9),342        };343 344        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);345    }346    else{347        result = 2 / (constants::pi<RealType>() * x * x);348    }349 350    return result;351}352 353 354template <class RealType>355BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_plus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 113>&)356{357    BOOST_MATH_STD_USING358    RealType result;359 360    if (x < 1) {361        // Rational Approximation362        // Maximum Relative Error: 7.4629e-35363        // LCOV_EXCL_START364        BOOST_MATH_STATIC const RealType P[14] = {365            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.62240126375351657025589608183516471315e-1),366            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.94698530837122818345222883832757839888e-1),367            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06728003509081587907620543204047536319e0),368            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.41256254272104786752190871391781331271e-1),369            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.34420233794664437979710204055323742199e-1),370            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.55021337841765667713712845735938627884e-1),371            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.90557752737535583908921594594761570259e-2),372            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.89899202021818926241643215600800085123e-3),373            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.19635143827754893815649685600837995626e-4),374            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.90989458941330917626663002392683325107e-5),375            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.92038069341802550019371049232152823407e-6),376            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.40251964644989324856906264776204142653e-9),377            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.55873076454666680466531097660277995317e-11),378            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.80771940886011613393622410616035955976e-13),379        };380        BOOST_MATH_STATIC const RealType Q[13] = {381            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),382            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.35771004134750535117224809381897395331e0),383            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.37002484862962406489509174332580745411e0),384            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.40833952846707180337506160933176158766e0),385            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.81709029902887471895588386777029652661e0),386            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.98824705588020901032379932614151640505e0),387            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.83767868823957223030472664574235892682e-1),388            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.35718995485026064249286377096427165287e-1),389            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.37305148463792922843850823142976586205e-2),390            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.06575764439154972544253668821920460826e-3),391            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07663693811543002088092708395572161856e-3),392            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.09711221791106684926377106608027279057e-5),393            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91302186546138009232520527964387543006e-6),394        };395        // LCOV_EXCL_STOP396        result = tools::evaluate_polynomial(P, x) / tools::evaluate_polynomial(Q, x);397    }398    else if (x < 2) {399        RealType t = x - 1;400 401        // Rational Approximation402        // Maximum Relative Error: 6.6684e-38403        // LCOV_EXCL_START404        BOOST_MATH_STATIC const RealType P[13] = {405            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63531240868022603475813051802104652763e-1),406            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.17803013130262393286657457221415701909e-1),407            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77780575692956605214628767143941600132e-1),408            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.44224824965135546671876867759691622832e-1),409            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.93294212655117265065191070995706405837e-2),410            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.16021988737209938284910541133167243163e-2),411            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.89245591723934954825306673917695058577e-3),412            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.09614731993308746343064543583426077485e-4),413            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48578173962833046113032690615443901556e-5),414            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.91098199913613774034789276073191721350e-7),415            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.46788618410999858374206722394998550706e-9),416            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.14296339768511312584670061679121003569e-12),417            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.52631422678659858574974085885146420544e-15),418        };419        BOOST_MATH_STATIC const RealType Q[13] = {420            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),421            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.48481735580594347909096198787726314434e0),422            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91598585888012869317473155570063821216e0),423            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.12672162924784178863164220170459406872e0),424            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06981909640884405591730537337036849744e0),425            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.89767326897694369071250285702215471082e-1),426            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.05098647402530640576816174680275844283e-1),427            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.10454903166951593161839822697382452489e-2),428            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.08850649343579977859251275585834901546e-3),429            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.21168773136767495960695426112972188729e-4),430            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21420361560900449851206650427538430926e-5),431            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.84456961344035545134425261150891935402e-7),432            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46462389440125559723382692664970874255e-8),433        };434        // LCOV_EXCL_STOP435        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);436    }437    else if (x < 4) {438        RealType t = x - 2;439 440        // Rational Approximation441        // Maximum Relative Error: 6.3397e-35442        // LCOV_EXCL_START443        BOOST_MATH_STATIC const RealType P[12] = {444            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.55242261334771588093967856464157010584e-2),445            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48866040463435403672044647455806606078e-1),446            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04241715667984551487882549843428953917e-1),447            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.32030608366022483736940428739436921577e-2),448            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17209924605508887793687609139940354371e-2),449            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.16808856405217460367038406337257561698e-3),450            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75466331296758720822164534334356742122e-4),451            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.35657250222166360635152712608912585973e-5),452            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.28870137478821561164537700376942753108e-6),453            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.07556331078347991810236646922418944687e-8),454            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.18067019247793233704208913546277631267e-10),455            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.96745094401496364651919224112160111958e-12),456        };457        BOOST_MATH_STATIC const RealType Q[14] = {458            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),459            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.07735872062601280828576861757316683396e0),460            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.00667909426245388114411629440735066799e0),461            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18840123665979969294228925712434860653e0),462            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.79233661359264185181083948452464063323e-1),463            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.38221013998193410441723488211346327478e-1),464            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91365002115280149925615665651486504495e-2),465            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.50379182630668701710656913597366961277e-3),466            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.03946139315999749917224356955071595508e-4),467            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.95417998434227083224840824790387887539e-5),468            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.05109028829536837163462811783445124876e-6),469            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.33125282515685091345480270760501403655e-8),470            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.58127838888839012133236453180928291822e-10),471            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.64781659622256824499981528095809140284e-12),472        };473        // LCOV_EXCL_STOP474        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);475    }476    else if (x < 8) {477        RealType t = x - 4;478 479        // Rational Approximation480        // Maximum Relative Error: 8.0238e-35481        // LCOV_EXCL_START482        BOOST_MATH_STATIC const RealType P[14] = {483            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.83643820409470770350079809236512802618e-2),484            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.02996762669868036727057860510914079553e-2),485            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.88220267784864518806154823373656292346e-2),486            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.12677705163934102871251710968247891123e-3),487            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.96642570169484318623869835991454809217e-4),488            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04358807405587072010621764865118316919e-4),489            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.09461879230275452416933096674703383719e-6),490            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.06823998699058163165831211561331795518e-7),491            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24129479811279469256914665585439417704e-8),492            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.01799222004929573125167949870797564244e-10),493            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27744716755834439008073010185921331093e-12),494            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.64210356143729930758657624381557123115e-17),495            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11666384975358223644665199669986358056e-19),496            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.30202644697506464624965700043476935471e-22),497        };498        BOOST_MATH_STATIC const RealType Q[13] = {499            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),500            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.44479208003384373099160875893986831861e0),501            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.54290037675901616362332580709754113529e-1),502            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.79815821498858750185823401350096868195e-1),503            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01076480676864621093034009679744852375e-1),504            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.88607467767854661547920709472888000469e-2),505            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.51572461182263866462295745828009170865e-3),506            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.39843444671402317250813055670653845815e-4),507            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.60546478324160472036295355872288494327e-5),508            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.25462551353792877506974677628167909695e-7),509            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.05915328498722701961972258866550409117e-8),510            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.20632869761578411246344533841556350518e-10),511            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.99438347491752820345051091574883391217e-12),512        };513        // LCOV_EXCL_STOP514        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);515    }516    else if (x < 16) {517        RealType t = x - 8;518 519        // Rational Approximation520        // Maximum Relative Error: 3.2541e-35521        // LCOV_EXCL_START522        BOOST_MATH_STATIC const RealType P[14] = {523            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.12656323880287532946687856443190592955e-2),524            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.31374972240605659239154788518240221417e-3),525            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.10776910971729651587578902049263096117e-3),526            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.53872632372452909103332647334935138324e-4),527            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.81756147611150151751911596225474463602e-5),528            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75302607308223110644722612796766590029e-6),529            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.33839913867469199941739467004997833889e-7),530            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.32115127487193219555283158969582307620e-9),531            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.90766547421015851413713511917307214275e-11),532            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.08939895797457378361211153362169024503e-12),533            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.88597187949354708113046662952288249250e-15),534            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.62829447082637808482463811005771133942e-17),535            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.65525705592205245661726488519562256000e-23),536            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.60698835222044786453848932477732972928e-26),537        };538        BOOST_MATH_STATIC const RealType Q[14] = {539            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),540            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.88605948104664828377228254521124685930e-1),541            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.58594705700945215121673591119784576258e-1),542            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.67113091918430152113322758216774649130e-2),543            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.39583889554372147091140765508385042797e-2),544            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.57139043074134496391251233307552940106e-3),545            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.26451960029396455805403758307828624817e-4),546            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.30400557427446929311350088728080667203e-6),547            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.99617890540456503276038942480115937467e-7),548            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.50232186816498003232143065883536003942e-9),549            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.59310652872918546431499274822722004981e-10),550            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.82203579442241682923277858553949327687e-12),551            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.10345359368438386945407402887625511801e-14),552            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.55225829972215033873365516486524181445e-17),553        };554        // LCOV_EXCL_STOP555        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);556    }557    else if (x < 32) {558        RealType t = x - 16;559 560        // Rational Approximation561        // Maximum Relative Error: 4.1276e-36562        // LCOV_EXCL_START563        BOOST_MATH_STATIC const RealType P[14] = {564            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.83847488747490686627461184914507143000e-3),565            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.61220392257287638364190361688188696363e-4),566            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.42217711448675893329072184826328300776e-4),567            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20597728166467972373586650878478687059e-5),568            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.46404433551447410467051774706080733051e-7),569            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.27909145305324391651548849043874549520e-8),570            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.33564789388635859003082815215888382619e-10),571            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.18456219811686603951886248687349029515e-12),572            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.92730718471866912036453008101994816885e-14),573            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.51773776414973336511129801645901922234e-16),574            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.32371094281803507447435352076735970857e-18),575            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.44775294242071078601023962869394690897e-21),576            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.94920633206242554892676642458535141153e-28),577            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.18030442958390399095902441284074544279e-31),578        };579        BOOST_MATH_STATIC const RealType Q[14] = {580            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),581            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.65871972115253665568580046072625013145e-1),582            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.74531522538358367003224536101724206626e-2),583            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20716479628426451344205712137554469781e-2),584            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.83247584368619500260722365812456197226e-4),585            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.52931189426842216323461406426803698335e-5),586            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.19343566926626449933230814579037896037e-6),587            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.16243058880148231471744235009435586353e-8),588            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21344088555713979086041331387697053780e-9),589            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63246599173435592817113618949498524238e-11),590            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.43426263963680589288791782556801934305e-13),591            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.62386317351298917459659548443220451300e-16),592            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.13281535580097407374477446521496074453e-18),593            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.27187882784316306216858933778750811182e-21),594        };595        // LCOV_EXCL_STOP596        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);597    }598    else if (x < 64) {599        RealType t = x - 32;600 601        // Rational Approximation602        // Maximum Relative Error: 1.8458e-35603        // LCOV_EXCL_START604        BOOST_MATH_STATIC const RealType P[14] = {605            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.85767880395157523314894776472286059373e-4),606            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07684379950498990874449661385130414967e-4),607            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.29181715091139597455177955800910928786e-6),608            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.78745116935613858188145093313446961899e-7),609            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.61522707085521545633529621526418843836e-9),610            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.00989556810424018339768632204186394735e-10),611            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.94136605359672888838088037894401904574e-13),612            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.15203266224687619299892471650072720579e-15),613            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.25349098945982074415471295859193558426e-17),614            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.31874620165906020409111024866737082384e-20),615            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.19330888204484008667352280840160186671e-23),616            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.89951131249530265518610784629981482444e-30),617            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.35979606245171162602352579985003194602e-33),618            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.50946115943875327149319867495704969908e-36),619        };620        BOOST_MATH_STATIC const RealType Q[13] = {621            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),622            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21212467547297045538111676107434471585e-1),623            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.17663841151156626845609176694801024524e-2),624            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.25478800461954401173897968683982253458e-3),625            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.69831763649657690166671862562231448718e-5),626            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.19712058726935472913461138967922524612e-6),627            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.11423395018514913507624349385447326009e-8),628            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.58664605420655866109404476637021322838e-10),629            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.15398721299264752103644541934654351463e-12),630            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17567858878427250079920401604119982576e-14),631            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.92808825029184923713064129493385469531e-17),632            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.06007644624654848502783947087038305433e-20),633            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.01246784499782934986619755015082182398e-23),634        };635        // LCOV_EXCL_STOP636        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);637    }638    else if (ilogb(x) < 8) {639        RealType t = log2(ldexp(x, -6));640 641        // Rational Approximation642        // Maximum Relative Error: 2.6634e-35643        // LCOV_EXCL_START644        BOOST_MATH_STATIC const RealType P[13] = {645            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.78613480244945294594505480426643613242e-1),646            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.07362312709864018864207848733814857157e-1),647            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.47727521897653923649758175033206259109e-1),648            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04183129813120998456717217121703605830e-1),649            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.09978729224187570508825456585418357590e-2),650            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98739784100617344335742510102186570437e-3),651            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.08596635852958074572320481325030046975e-4),652            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.34947456497875218771996878497766058580e-5),653            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.31766866003171430205401377671093088134e-6),654            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.29444683984117745298484117924452498776e-8),655            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34885173277203843795065094551227568738e-9),656            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30306828175920576070486704404727265760e-11),657            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.05908347665846652276910544097430115068e-13),658        };659        BOOST_MATH_STATIC const RealType Q[13] = {660            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),661            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07218191317166728296013167220324207427e0),662            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.38908532499742180532814291654329829544e-1),663            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63676664387672566455490461784630320677e-1),664            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.31302647779056928216789214742790688980e-2),665            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.69477260342662648574925942030720482689e-3),666            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.82918424748192763052497731722563414651e-4),667            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.69244295675395948278971027618145225216e-5),668            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.08928780307959133484802547123672997757e-6),669            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.11055350627948183551681634293425028439e-8),670            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22066081452382450191191677443527136733e-9),671            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.78025987104169227624653323808131280009e-11),672            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.93164997733174955208299290433803918816e-13),673        };674        // LCOV_EXCL_STOP675        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);676    }677    else if (ilogb(x) < 16) {678        RealType t = log2(ldexp(x, -8));679 680        // Rational Approximation681        // Maximum Relative Error: 6.1919e-36682        // LCOV_EXCL_START683        BOOST_MATH_STATIC const RealType P[19] = {684            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.51438485661317103069553924870169052838e-1),685            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.29652867028564588922931020456447362877e-1),686            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.90557738902930002845457640269863338815e-1),687            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.47622170600415955276436226439948455362e-2),688            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.75198213226024095368607442455597948634e-2),689            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.73010116224706573149404022585502812698e-3),690            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.33440551266376466187512220300943206212e-4),691            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.27556365758364667507686872656121131255e-5),692            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.63395763346533783414747536236033733143e-6),693            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.75408632486279069728789506666930014630e-7),694            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.74194099205847568739445023334735086627e-9),695            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.52462367172968216583968200390021647482e-10),696            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.75367408334713835736514158797013854282e-11),697            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.62633983586253025227038002631010874719e-13),698            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46717630077826649018810277799043037738e-14),699            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.00642537643332236333695338824014611799e-16),700            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.47351714774371338348451112020520067028e-18),701            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.15896012319823666881998903857141624070e-20),702            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.62176014448801854863922778456328119208e-25),703        };704        BOOST_MATH_STATIC const RealType Q[18] = {705            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),706            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.79042471052521112984740498925369905803e-1),707            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.55058068535501327896327971200536085268e-1),708            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.33143443551335870264469963604049242325e-1),709            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75325348141376361676246108294525717629e-2),710            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.28871858542582365161221803267369985933e-3),711            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.23702867786056336210872367019916245663e-4),712            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.14513776996445072162386201808986222616e-5),713            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.13763070277828149031445006534179375988e-6),714            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75529866599039195417128499359378019030e-7),715            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.53029524184341515115464886126119582515e-8),716            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.10598685541492162454676538516969294049e-10),717            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75587930183994618721688808612207567233e-11),718            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.83150895141383746641924725237948860959e-13),719            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.30675015193353451939138512698571954110e-14),720            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.71774361582156518394662911172142577047e-16),721            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.03397072601182597002547703682673198965e-18),722            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.52666999314026491934445577764441483687e-20),723        };724        // LCOV_EXCL_STOP725        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);726    }727    else if (ilogb(x) < 32) {728        RealType t = log2(ldexp(x, -16));729 730        // Rational Approximation731        // Maximum Relative Error: 1.2411e-36732        // LCOV_EXCL_START733        BOOST_MATH_STATIC const RealType P[18] = {734            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36745544906925230101752563433306496000e-1),735            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.73688900814770369626527563956988302379e-1),736            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.81718746296195151971617726268038570065e-2),737            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.13663059680440438907042970413471861121e-3),738            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.40004645275531255402942177790836798523e-4),739            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.80059489775751412372432345156902685277e-5),740            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.47699576477278882708291693658669435536e-6),741            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.45226121992756638990044029871581321461e-7),742            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.13406331882918393195342615955627442395e-8),743            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.46682598893946975917562485374893408094e-10),744            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50450743907497671918301557074470352707e-11),745            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.33121239192492785826422815650499088833e-13),746            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.05998176182038788839361491871608950696e-14),747            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.17857918044922309623941523489531919822e-16),748            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.67865547879145051715131144371287619666e-18),749            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.89654931108624296326740455618289840327e-20),750            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.73017950634516660552375272495618707905e-22),751            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.68519137981001059472024985205381913202e-24),752        };753        BOOST_MATH_STATIC const RealType Q[18] = {754            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),755            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.29948066505039082395951244410552705780e-1),756            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.13730690908098361287472898564563217987e-2),757            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27810872138103132689695155123062073221e-2),758            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.31948058845675193039732511839435290811e-3),759            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06822729610151747708260147063757668707e-4),760            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.03250522904270408071762059653475885811e-6),761            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.85197262150009124871794386644476067020e-7),762            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.78139536405831228129042087771755615472e-8),763            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.01642938314578533660138738069251610818e-10),764            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.36328724659833107203404258336776286146e-11),765            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.80342430290059616305921915291683180697e-13),766            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.66502051110007556897014898713746069491e-14),767            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.42209715361911856322028597714105225748e-16),768            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.77842582605458905635718323117222788078e-18),769            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.69147628396460384758492682185049535079e-20),770            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.43015110519230289924122344324563890953e-22),771            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.21788819753161690674882271896091269356e-24),772        };773        // LCOV_EXCL_STOP774        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);775    }776    else if (ilogb(x) < 64) {777        RealType t = log2(ldexp(x, -32));778 779        // Rational Approximation780        // Maximum Relative Error: 2.0348e-35781        // LCOV_EXCL_START782        BOOST_MATH_STATIC const RealType P[19] = {783            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619776379492082323649724050601750141e-1),784            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29818158612993476124594583743266388964e-1),785            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.07736315744724186061845512973085067283e-2),786            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.72566458808745644851080213349673559756e-3),787            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.01243670706840752914099834172565920736e-4),788            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.65306557791300593593488790517297048902e-5),789            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.41751291649776832705247036453540452119e-6),790            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.26652535267657618112731521308564571490e-8),791            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.32742926765578976373764178875983383214e-9),792            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.32948532312961882464151446137719196209e-11),793            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.96536595631611560703804402181953334762e-12),794            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.48463581600017734001916804890205661347e-14),795            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.65588239861378749665334852913775575615e-16),796            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.39462290798829172203386678450961569536e-17),797            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.83049279786679854738508318703604392055e-19),798            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87131679136229094080572090496960701828e-21),799            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.35977519905679446758726709186381481753e-23),800            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.50639358104925465711435411537609380290e-26),801            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.47593981758247424082096107205150226114e-40),802        };803        BOOST_MATH_STATIC const RealType Q[18] = {804            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),805            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.60997521267746350015610841742718472657e-1),806            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.40470704349086277215167519790809981379e-2),807            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.42305660178694704379572259575557934523e-3),808            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.30272082429322808188807034927827414359e-4),809            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.16742567294582284534194935923915261582e-5),810            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22662407906450293978092195442686428843e-6),811            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.84343501655116670387608730076359018869e-8),812            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.65591734166216912475609790035240582537e-9),813            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.15131286290573570519912674341226377625e-10),814            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.08718962387679715644203327604824250850e-12),815            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.04444946843492647477476784817227903589e-14),816            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.35966282749098189010715902284098451987e-15),817            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.19066854132814661112207991393498039851e-17),818            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.87533136296192957063599695937632598999e-19),819            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.93945754223094281767677343057286164777e-21),820            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.13592988790740273103099465658198617078e-23),821            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.64942281110142621080966631872844557766e-26),822        };823        // LCOV_EXCL_STOP824        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);825    }826    else if (ilogb(x) < 128) {827        RealType t = log2(ldexp(x, -64));828 829        // Rational Approximation830        // Maximum Relative Error: 4.3963e-35831        // LCOV_EXCL_START832        BOOST_MATH_STATIC const RealType P[18] = {833            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619772367581344984274685280416528592e-1),834            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.72417390936686577479751162141499390532e-1),835            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.74319117326966091295365258834959120634e-2),836            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.94269681742277805376258823511210253023e-3),837            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.09354876913180019634171748490068797632e-4),838            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.46986612543101357465265079580805403382e-5),839            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.21726753043764920243710352514279216684e-6),840            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29971756326232375757519588897328507962e-7),841            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06770117983967828996891025614645348127e-8),842            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.27141668055392041978388268556174062945e-10),843            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48383887723476619460217715361289178429e-11),844            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.49530301203157403427315504054500005836e-13),845            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18668427867427341566476567665953082312e-14),846            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.73377083349017331494144334612902128610e-16),847            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.32380647653444581710582396517056104063e-18),848            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.29865827039123699411352876626634361936e-20),849            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07464506614287925844993490382319608619e-21),850            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.60173555862875972119871402681133785088e-23),851        };852        BOOST_MATH_STATIC const RealType Q[18] = {853            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),854            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.27912237038396638341492536677313983747e-1),855            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.02138359905285600768927677649467546192e-2),856            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24763589856532154099789305018886222841e-2),857            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27133166772875885088000073325642460162e-3),858            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01628419446817660009223289575239926907e-4),859            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.62446834592284424116329218260348474201e-6),860            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.61238790103816844895453935630752859272e-7),861            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67714109140674398508739253084218270557e-8),862            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.70952563202454851902810005226033501692e-10),863            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.33080865791583428494353408816388908148e-11),864            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.06120545912923145572220606396715398781e-13),865            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.86403930600680015325844027465766431761e-14),866            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.29419718354538719350803683985104818654e-16),867            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.36261565790718847159482447247645891176e-18),868            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46062982552515416754702177333530968405e-19),869            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.68804852250549346018535616711418533423e-21),870            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.51600033199082754845231795160728350588e-23),871        };872        // LCOV_EXCL_STOP873        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x * x);874    }875    else {876        result = 2 / (constants::pi<RealType>() * x * x);877    }878 879    return result;880}881 882template <class RealType>883BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_minus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 53>&)884{885    BOOST_MATH_STD_USING886    RealType result;887 888    if(x >= -1){889        RealType t = x + 1;890 891        // Rational Approximation892        // Maximum Relative Error: 9.3928e-17893        BOOST_MATH_STATIC const RealType P[9] = {894            static_cast<RealType>(2.21762208692280384264e-1),895            static_cast<RealType>(7.10041055270973473923e-1),896            static_cast<RealType>(8.66556480457430718380e-1),897            static_cast<RealType>(4.78718713740071686348e-1),898            static_cast<RealType>(1.03670563650247405820e-1),899            static_cast<RealType>(4.31699263023057628473e-3),900            static_cast<RealType>(1.72029926636215817416e-3),901            static_cast<RealType>(-2.76271972015177236271e-4),902            static_cast<RealType>(1.89483904652983701680e-5),903        };904        BOOST_MATH_STATIC const RealType Q[8] = {905            static_cast<RealType>(1),906            static_cast<RealType>(2.18155995697310361937e0),907            static_cast<RealType>(2.53173077603836285217e0),908            static_cast<RealType>(1.91802065831309251416e0),909            static_cast<RealType>(9.94481663032480077373e-1),910            static_cast<RealType>(3.72037148486473195054e-1),911            static_cast<RealType>(8.85828240211801048938e-2),912            static_cast<RealType>(1.41354784778520560313e-2),913        };914 915        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);916    }917    else if (x >= -2) {918        RealType t = x + 2;919 920        // Rational Approximation921        // Maximum Relative Error: 2.4742e-18922        BOOST_MATH_STATIC const RealType P[11] = {923            static_cast<RealType>(6.50763682207511020789e-3),924            static_cast<RealType>(5.73790055136022120436e-2),925            static_cast<RealType>(2.22375662069496257066e-1),926            static_cast<RealType>(4.92288611166073916396e-1),927            static_cast<RealType>(6.74552077334695078716e-1),928            static_cast<RealType>(5.75057550963763663751e-1),929            static_cast<RealType>(2.85690710485234671432e-1),930            static_cast<RealType>(6.73776735655426117231e-2),931            static_cast<RealType>(3.80321995712675339999e-3),932            static_cast<RealType>(1.09503400950148681072e-3),933            static_cast<RealType>(-9.00045301380982997382e-5),934        };935        BOOST_MATH_STATIC const RealType Q[11] = {936            static_cast<RealType>(1),937            static_cast<RealType>(1.07919389927659014373e0),938            static_cast<RealType>(2.56142472873207168042e0),939            static_cast<RealType>(1.68357271228504881003e0),940            static_cast<RealType>(2.23924151033591770613e0),941            static_cast<RealType>(9.05629695159584880257e-1),942            static_cast<RealType>(8.94372028246671579022e-1),943            static_cast<RealType>(1.98616842716090037437e-1),944            static_cast<RealType>(1.70142519339469434183e-1),945            static_cast<RealType>(1.46288923980509020713e-2),946            static_cast<RealType>(1.26171654901120724762e-2),947        };948 949        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);950    }951    else {952        const static RealType lambda_bias = static_cast<RealType>(1.45158270528945486473); // (= log(pi/2)+1)953 954        RealType sigma = exp(-x * constants::pi<RealType>() / 2 - lambda_bias);955        RealType s = exp(-sigma) * sqrt(sigma);956 957        if (x >= -4) {958            RealType t = -x - 2;959 960            // Rational Approximation961            // Maximum Relative Error: 5.8685e-18962            BOOST_MATH_STATIC const RealType P[8] = {963                static_cast<RealType>(6.31126317567898819465e-1),964                static_cast<RealType>(5.28493759149515726917e-1),965                static_cast<RealType>(3.28301410420682938866e-1),966                static_cast<RealType>(1.31682639578153092699e-1),967                static_cast<RealType>(3.86573798047656547423e-2),968                static_cast<RealType>(7.77797337463414935830e-3),969                static_cast<RealType>(9.97883658430364658707e-4),970                static_cast<RealType>(6.05131104440018116255e-5),971            };972            BOOST_MATH_STATIC const RealType Q[8] = {973                static_cast<RealType>(1),974                static_cast<RealType>(8.47781139548258655981e-1),975                static_cast<RealType>(5.21797290075642096762e-1),976                static_cast<RealType>(2.10939174293308469446e-1),977                static_cast<RealType>(6.14856955543769263502e-2),978                static_cast<RealType>(1.24427885618560158811e-2),979                static_cast<RealType>(1.58973907730896566627e-3),980                static_cast<RealType>(9.66647686344466292608e-5),981            };982 983            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);984        }985        else if (x >= -5.1328125) {986            RealType t = -x - 4;987 988            // Rational Approximation989            // Maximum Relative Error: 3.2532e-17990            BOOST_MATH_STATIC const RealType P[9] = {991                static_cast<RealType>(6.26864481454444278646e-1),992                static_cast<RealType>(5.10647753508714204745e-1),993                static_cast<RealType>(1.98551443303285119497e-1),994                static_cast<RealType>(4.71644854289800143386e-2),995                static_cast<RealType>(7.71285919105951697285e-3),996                static_cast<RealType>(8.93551020612017939395e-4),997                static_cast<RealType>(6.97020145401946303751e-5),998                static_cast<RealType>(4.17249760274638104772e-6),999                static_cast<RealType>(7.73502439313710606153e-12),1000            };1001            BOOST_MATH_STATIC const RealType Q[8] = {1002                static_cast<RealType>(1),1003                static_cast<RealType>(8.15124079722976906223e-1),1004                static_cast<RealType>(3.16755852188961901369e-1),1005                static_cast<RealType>(7.52819418000330690962e-2),1006                static_cast<RealType>(1.23053506566779662890e-2),1007                static_cast<RealType>(1.42615273721494498141e-3),1008                static_cast<RealType>(1.11211928184477279204e-4),1009                static_cast<RealType>(6.65899898061789485757e-6),1010            };1011 1012            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1013        }1014        else {1015            result = 0;1016        }1017    }1018 1019    return result;1020}1021 1022template <class RealType>1023BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_minus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 113>&)1024{1025    BOOST_MATH_STD_USING1026    RealType result;1027 1028    if (x >= -1) {1029        RealType t = x + 1;1030 1031        // Rational Approximation1032        // Maximum Relative Error: 1.2803e-361033        // LCOV_EXCL_START1034        BOOST_MATH_STATIC const RealType P[16] = {1035            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21762208692280384264052188465103527015e-1),1036            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07121154108880017947709737976750200391e0),1037            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.34036993772851526455115746887751392080e0),1038            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.06347688547967680654012636399459376006e0),1039            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.68662427153576049083876306225433068713e0),1040            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67496398036468361727297056409545434117e0),1041            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.69289909624425652939466055042210850769e-1),1042            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.65649060232973461318206716040181929160e-1),1043            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.93006819232611588097575675157841312689e-2),1044            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34514211575975820725706925256381036061e-2),1045            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.86184594939834946952489805173559003431e-3),1046            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.66982890863184520310462776294335540260e-4),1047            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.28944885271022303878175622411438230193e-6),1048            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.47136245900831864668353768185407977846e-9),1049            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98034330388999615249606466662289782222e-10),1050            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.67931741921878993598048665757824165533e-12),1051        };1052        BOOST_MATH_STATIC const RealType Q[15] = {1053            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1054            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.81019852414657529520034272090632311645e0),1055            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.51602582973416348091361820936922274106e0),1056            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.87246706500788771729605610442552651673e0),1057            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.55758863380051182011815572544985924963e0),1058            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.16921634066377885762356020006515057786e0),1059            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.28590978860106110644638308039189352463e0),1060            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.07182688002603587927920766666962846169e0),1061            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.14413931232875917473403467095618397172e-1),1062            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.59534588679183116305361784906322155131e-1),1063            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.62788361787003488572546802835677555151e-2),1064            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.32291670834750583053201239125839728061e-2),1065            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.97300476673137879475887158731166178829e-3),1066            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.99801949382703479169010768105376163814e-4),1067            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.09234481837537672361990844588166022791e-5),1068        };1069        // LCOV_EXCL_STOP1070        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1071    }1072    else if (x >= -2) {1073        RealType t = x + 2;1074 1075        // Rational Approximation1076        // Maximum Relative Error: 3.8590e-351077        // LCOV_EXCL_START1078        BOOST_MATH_STATIC const RealType P[19] = {1079            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.50763682207511020788551990942118742910e-3),1080            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.35160148798611192350830963080055471564e-2),1081            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.85567614778755464918744664468938413626e-1),1082            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24395902843792338723377508551415399267e0),1083            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75803588325237557939443967923337822799e0),1084            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.44751743702858358960016891543930028989e0),1085            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.38771920793989989423514808134997891434e0),1086            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.99899457801652012757624005300136548027e0),1087            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.59668432891116320233415536189782241116e0),1088            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.02521376213276025040458141317737977692e0),1089            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.00511857068867825025582508627038721402e-1),1090            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.19031970665203475373248353773765801546e-1),1091            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.03203906044415590651592066934331209362e-2),1092            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.01354553335348149914596284286907046333e-2),1093            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.40077709279222086527834844446288408059e-3),1094            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.07036291955272673946830858788691198641e-4),1095            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75229595324028909877518859428663744660e-5),1096            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.51522041748753421579496885726802106514e-8),1097            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.28554063325397021905295499768922434904e-10),1098        };1099        BOOST_MATH_STATIC const RealType Q[19] = {1100            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1101            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.55889733194498836168215560931863059152e0),1102            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.45050534010127542130960211621894286688e0),1103            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.39437268390909980446225806216001154876e1),1104            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85370557677145869100298813360909127310e1),1105            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.99358236671478050470186012149124879556e1),1106            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.82914467302553175692644992910876515874e1),1107            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.42426383410763382224410804289834740252e1),1108            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.69477085497572590673874940261777949808e0),1109            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.69832833104494997844651343499526754631e0),1110            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.95708391432781281454592429473451742972e0),1111            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.32541987059874996779040445020449508142e0),1112            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.24889827757289516008834701298899804535e-1),1113            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.76326709965329347689033555841964826234e-1),1114            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.19652942193884551681987290472603208296e-2),1115            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.22987197033955835618810845653379470109e-2),1116            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.51893290463268547258382709202599507274e-3),1117            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.43575882043846146581825453522967678538e-4),1118            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.06683418138599962787868832158681391673e-5),1119        };1120        // LCOV_EXCL_STOP1121        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1122    }1123    else {1124        const static RealType lambda_bias = BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.451582705289454864726195229894882143572); // (= log(pi/2)+1)1125 1126        RealType sigma = exp(-x * constants::pi<RealType>() / 2 - lambda_bias);1127        RealType s = exp(-sigma) * sqrt(sigma);1128 1129        if (x >= -4) {1130            RealType t = -x - 2;1131 1132            // Rational Approximation1133            // Maximum Relative Error: 7.0019e-351134            // LCOV_EXCL_START1135            BOOST_MATH_STATIC const RealType P[18] = {1136                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.31126317567898819464557840628449107915e-1),1137                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.31008645911415314700225107327351636697e-1),1138                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.60743397071713227215207831174512626190e-1),1139                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.69243936604887410595461520921270733657e-1),1140                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.93778117053417749769040328795824088196e-1),1141                BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.04718815412035890861219665332918840537e-2),1142                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.41914050146414549019258775115663029791e-2),1143                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17147074474397510167661838243237386450e-2),1144                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.31006358624990533313832878493963971249e-3),1145                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.31424805670861981190416637260176493218e-4),1146                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.71604447221961082506919140038819715820e-4),1147                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.01796816886825676412069047911936154422e-5),1148                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.16975381608692872525287947181531051179e-6),1149                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.47194712963929503930146780326366215579e-7),1150                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.19469248860267489980690249379132289464e-8),1151                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.22272545853285700254948346226514762534e-9),1152                BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.05432616288832680241611577865488417904e-13),1153                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.08723511461992818779941378551362882730e-14),1154            };1155            BOOST_MATH_STATIC const RealType Q[16] = {1156                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1157                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01021278581037282130358759075689669228e0),1158                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.91783545335316986601746168681457332835e-1),1159                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.90025337163174587593060864843160047245e-1),1160                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.09029833197792884728968597136867674585e-1),1161                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.44295160726145715084515736090313329125e-1),1162                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.46416375246465800703437031839310870287e-2),1163                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.86521610039165178072099210670199368231e-2),1164                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.29830357713744587265637686549132688965e-3),1165                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.32187562202835921333177458294507064946e-3),1166                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75034541113922116856456794810138543224e-4),1167                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.79216314818261657918748858010817570215e-5),1168                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.69179323869133503169292092727333289999e-6),1169                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.09019623876540244217038375274802731869e-7),1170                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.13900582194674129200395213522524183495e-8),1171                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.92590979457175565666605415984496551246e-9),1172            };1173            // LCOV_EXCL_STOP1174            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1175        }1176        else if (x >= -6.875) {1177            RealType t = -x - 4;1178 1179            // Rational Approximation1180            // Maximum Relative Error: 6.4095e-351181            // LCOV_EXCL_START1182            BOOST_MATH_STATIC const RealType P[18] = {1183                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.26864481454444278645937156746132802908e-1),1184                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.35052316263030534355724898036735352905e0),1185                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46701697626917441774916114124028252971e0),1186                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.03805679118924248671851611170709699862e0),1187                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.29457230118834515743802694404620370943e-1),1188                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.04992992250026414994541561073467805333e-1),1189                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.21521951889983113700615967351903983850e-2),1190                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50611640491200231504944279876023072268e-2),1191                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.96007721851412367657495076592244098807e-3),1192                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.76876967456744990483799856564174838073e-4),1193                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.34285198828980523126745002596084187049e-5),1194                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.98811180672843179022928339476420108494e-6),1195                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36933707823930146448761204037985193905e-7),1196                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.76515121042989743198432939393805252169e-8),1197                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.87259915481622487665138935922067520210e-9),1198                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34703958446785695676542385299325713141e-10),1199                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.53199672688507288037695102377982544434e-12),1200                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.97283413733676690377949556457649405210e-14),1201            };1202            BOOST_MATH_STATIC const RealType Q[18] = {1203                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1204                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.15492787140203223641846510939273526038e0),1205                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.34095796298757853634036909432345998054e0),1206                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.65650140652391522296109869665871008634e0),1207                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.44894089102275258806976831589022821974e-1),1208                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.27121975866547045393504246592187721233e-1),1209                BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.91803733484503004520983723890062644122e-2),1210                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.40341451263971324381655967408519161854e-2),1211                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.72360046810103129487529493828280649599e-3),1212                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.60986435254173073868329335245110986549e-4),1213                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01216966786091058959421242465309838187e-4),1214                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11514619470960373138100691463949937779e-5),1215                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01639426441970732201346798259534312372e-6),1216                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.60411422906070056043690129326288757143e-8),1217                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.58398956202137709744885774931524547894e-9),1218                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.14956902064425256856583295469934064903e-10),1219                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.23201118234279642321630988607491208515e-12),1220                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.43185798646451225275728735761433082676e-13),1221            };1222            // LCOV_EXCL_STOP1223            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1224        }1225        else {1226            result = 0;1227        }1228    }1229 1230    return result;1231}1232 1233template <class RealType>1234BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_imp_prec(const RealType& x, const boost::math::integral_constant<int, 53> &tag) {1235    if (x >= 0) {1236        return landau_pdf_plus_imp_prec<RealType>(x, tag);1237    }1238    else if (x <= 0) {1239        return landau_pdf_minus_imp_prec<RealType>(x, tag);1240    }1241    else {1242        return boost::math::numeric_limits<RealType>::quiet_NaN();1243    }1244}1245 1246template <class RealType>1247BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_imp_prec(const RealType& x, const boost::math::integral_constant<int, 113>& tag) {1248    if (x >= 0) {1249        return landau_pdf_plus_imp_prec<RealType>(x, tag);1250    }1251    else if (x <= 0) {1252        return landau_pdf_minus_imp_prec<RealType>(x, tag);1253    }1254    else {1255        return boost::math::numeric_limits<RealType>::quiet_NaN();1256    }1257}1258 1259template <class RealType, class Policy>1260BOOST_MATH_GPU_ENABLED inline RealType landau_pdf_imp(const landau_distribution<RealType, Policy>& dist, const RealType& x) {1261    //1262    // This calculates the pdf of the Landau distribution and/or its complement.1263    //1264 1265    BOOST_MATH_STD_USING // for ADL of std functions1266    constexpr auto function = "boost::math::pdf(landau<%1%>&, %1%)";1267    RealType result = 0;1268    RealType location = dist.location();1269    RealType scale = dist.scale();1270    RealType bias = dist.bias();1271 1272    if (false == detail::check_location(function, location, &result, Policy()))1273    {1274        return result;1275    }1276    if (false == detail::check_scale(function, scale, &result, Policy()))1277    {1278        return result;1279    }1280    if (false == detail::check_x(function, x, &result, Policy()))1281    {1282        return result;1283    }1284 1285    typedef typename tools::promote_args<RealType>::type result_type;1286    typedef typename policies::precision<result_type, Policy>::type precision_type;1287    typedef boost::math::integral_constant<int,1288        precision_type::value <= 0 ? 0 :1289        precision_type::value <= 53 ? 53 :1290        precision_type::value <= 113 ? 113 : 01291    > tag_type;1292 1293    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");1294 1295    RealType u = (x - location) / scale + bias;1296 1297    result = landau_pdf_imp_prec(u, tag_type()) / scale;1298 1299    return result;1300}1301 1302template <class RealType>1303BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_plus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 53>&)1304{1305    BOOST_MATH_STD_USING1306    RealType result;1307 1308    if (x < 1) {1309        // Rational Approximation1310        // Maximum Relative Error: 2.7348e-181311        BOOST_MATH_STATIC const RealType P[7] = {1312            static_cast<RealType>(6.34761298487625202628e-1),1313            static_cast<RealType>(7.86558857265845597915e-1),1314            static_cast<RealType>(4.30220871807399303399e-1),1315            static_cast<RealType>(1.26410946316538340541e-1),1316            static_cast<RealType>(2.09346669713191648490e-2),1317            static_cast<RealType>(1.48926177023501002834e-3),1318            static_cast<RealType>(-5.93750588554108593271e-7),1319        };1320        BOOST_MATH_STATIC const RealType Q[7] = {1321            static_cast<RealType>(1),1322            static_cast<RealType>(1.65227304522196452589e0),1323            static_cast<RealType>(1.29276828719607419526e0),1324            static_cast<RealType>(5.93815051307098615300e-1),1325            static_cast<RealType>(1.69165968013666952456e-1),1326            static_cast<RealType>(2.84272940328510367574e-2),1327            static_cast<RealType>(2.28001970477820696422e-3),1328        };1329 1330        result = tools::evaluate_polynomial(P, x) / tools::evaluate_polynomial(Q, x);1331    }1332    else if (x < 2) {1333        RealType t = x - 1;1334 1335        // Rational Approximation1336        // Maximum Relative Error: 6.1487e-171337        BOOST_MATH_STATIC const RealType P[6] = {1338            static_cast<RealType>(4.22133240358047652363e-1),1339            static_cast<RealType>(3.48421126689016131480e-1),1340            static_cast<RealType>(1.15402429637790321091e-1),1341            static_cast<RealType>(1.90374044978864005061e-2),1342            static_cast<RealType>(1.26628667888851698698e-3),1343            static_cast<RealType>(-5.75103242931559285281e-7),1344        };1345        BOOST_MATH_STATIC const RealType Q[6] = {1346            static_cast<RealType>(1),1347            static_cast<RealType>(1.21277435324167238159e0),1348            static_cast<RealType>(6.38324046905267845243e-1),1349            static_cast<RealType>(1.81723381692749892660e-1),1350            static_cast<RealType>(2.80457012073363245106e-2),1351            static_cast<RealType>(1.93749385908189487538e-3),1352        };1353 1354        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1355    }1356    else if (x < 4) {1357        RealType t = x - 2;1358 1359        // Rational Approximation1360        // Maximum Relative Error: 3.2975e-171361        BOOST_MATH_STATIC const RealType P[6] = {1362            static_cast<RealType>(2.95892137955791216378e-1),1363            static_cast<RealType>(2.29083899043580095868e-1),1364            static_cast<RealType>(7.09374171394372356009e-2),1365            static_cast<RealType>(1.08774274442674552229e-2),1366            static_cast<RealType>(7.69674715320139398655e-4),1367            static_cast<RealType>(1.63486840000680408991e-5),1368        };1369        BOOST_MATH_STATIC const RealType Q[7] = {1370            static_cast<RealType>(1),1371            static_cast<RealType>(1.09704883482087441931e0),1372            static_cast<RealType>(5.10139057077147935327e-1),1373            static_cast<RealType>(1.27055234007499238241e-1),1374            static_cast<RealType>(1.74542139987310825683e-2),1375            static_cast<RealType>(1.18944143641885993718e-3),1376            static_cast<RealType>(2.55296292914537992309e-5),1377        };1378 1379        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1380    }1381    else if (x < 8) {1382        RealType t = x - 4;1383 1384        // Rational Approximation1385        // Maximum Relative Error: 2.6740e-171386        BOOST_MATH_STATIC const RealType P[8] = {1387            static_cast<RealType>(1.73159318667565938776e-1),1388            static_cast<RealType>(6.95847424776057206679e-2),1389            static_cast<RealType>(1.04513924567165899506e-2),1390            static_cast<RealType>(6.35094718543965631442e-4),1391            static_cast<RealType>(1.04166111154771164657e-5),1392            static_cast<RealType>(1.43633490646363733467e-9),1393            static_cast<RealType>(-4.55493341295654514558e-11),1394            static_cast<RealType>(6.71119091495929467041e-13),1395        };1396        BOOST_MATH_STATIC const RealType Q[6] = {1397            static_cast<RealType>(1),1398            static_cast<RealType>(6.23409270429130114247e-1),1399            static_cast<RealType>(1.54791925441839372663e-1),1400            static_cast<RealType>(1.85626981728559445893e-2),1401            static_cast<RealType>(1.01414235673220405086e-3),1402            static_cast<RealType>(1.63385654535791481980e-5),1403        };1404 1405        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1406    }1407    else if (x < 16) {1408        RealType t = x - 8;1409 1410        // Rational Approximation1411        // Maximum Relative Error: 7.6772e-181412        BOOST_MATH_STATIC const RealType P[7] = {1413            static_cast<RealType>(8.90469147411748292410e-2),1414            static_cast<RealType>(2.76033447621178662228e-2),1415            static_cast<RealType>(3.26577485081539607943e-3),1416            static_cast<RealType>(1.77755752909150255339e-4),1417            static_cast<RealType>(4.20716551767396206445e-6),1418            static_cast<RealType>(3.19415703637929092564e-8),1419            static_cast<RealType>(-1.79900915228302845362e-13),1420        };1421        BOOST_MATH_STATIC const RealType Q[7] = {1422            static_cast<RealType>(1),1423            static_cast<RealType>(4.36499987260915480890e-1),1424            static_cast<RealType>(7.67544181756713372678e-2),1425            static_cast<RealType>(6.83535263652329633233e-3),1426            static_cast<RealType>(3.15983778969051850073e-4),1427            static_cast<RealType>(6.84144567273078698399e-6),1428            static_cast<RealType>(5.00300197147417963939e-8),1429        };1430 1431        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1432    }1433    else if (x < 32) {1434        RealType t = x - 16;1435 1436        // Rational Approximation1437        // Maximum Relative Error: 1.5678e-201438        BOOST_MATH_STATIC const RealType P[8] = {1439            static_cast<RealType>(4.35157264931262089762e-2),1440            static_cast<RealType>(8.46833474333913742597e-3),1441            static_cast<RealType>(6.43769318301002170686e-4),1442            static_cast<RealType>(2.39440197089740502223e-5),1443            static_cast<RealType>(4.45572968892675484685e-7),1444            static_cast<RealType>(3.76071815793351687179e-9),1445            static_cast<RealType>(1.04851094362145160445e-11),1446            static_cast<RealType>(-8.50646541795105885254e-18),1447        };1448        BOOST_MATH_STATIC const RealType Q[8] = {1449            static_cast<RealType>(1),1450            static_cast<RealType>(2.59832721225510968607e-1),1451            static_cast<RealType>(2.75929030381330309762e-2),1452            static_cast<RealType>(1.53115657043391090526e-3),1453            static_cast<RealType>(4.70173086825204710446e-5),1454            static_cast<RealType>(7.76185172490852556883e-7),1455            static_cast<RealType>(6.10512879655564540102e-9),1456            static_cast<RealType>(1.64522607881748812093e-11),1457        };1458 1459        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1460    }1461    else if (x < 64) {1462        RealType t = x - 32;1463 1464        // Rational Approximation1465        // Maximum Relative Error: 2.2534e-171466        BOOST_MATH_STATIC const RealType P[7] = {1467            static_cast<RealType>(2.11253031965493064317e-2),1468            static_cast<RealType>(1.36656844320536022509e-3),1469            static_cast<RealType>(2.99036224749763963099e-5),1470            static_cast<RealType>(2.54538665523638998222e-7),1471            static_cast<RealType>(6.79286608893558228264e-10),1472            static_cast<RealType>(-6.92803349600061706079e-16),1473            static_cast<RealType>(5.47233092767314029032e-19),1474        };1475        BOOST_MATH_STATIC const RealType Q[6] = {1476            static_cast<RealType>(1),1477            static_cast<RealType>(9.71506209641408410168e-2),1478            static_cast<RealType>(3.52744690483830496158e-3),1479            static_cast<RealType>(5.85142319429623560735e-5),1480            static_cast<RealType>(4.29686638196055795330e-7),1481            static_cast<RealType>(1.06586221304077993137e-9),1482        };1483 1484        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1485    }1486    else if (ilogb(x) < 8) {1487        RealType t = log2(ldexp(x, -6));1488 1489        // Rational Approximation1490        // Maximum Relative Error: 3.8057e-171491        BOOST_MATH_STATIC const RealType P[7] = {1492            static_cast<RealType>(6.60754766433212615409e-1),1493            static_cast<RealType>(2.47190065739055522599e-1),1494            static_cast<RealType>(4.17560046901040308267e-2),1495            static_cast<RealType>(3.71520821873148657971e-3),1496            static_cast<RealType>(2.03659383008528656781e-4),1497            static_cast<RealType>(2.52070598577347523483e-6),1498            static_cast<RealType>(-1.63741595848354479992e-8),1499        };1500        BOOST_MATH_STATIC const RealType Q[6] = {1501            static_cast<RealType>(1),1502            static_cast<RealType>(3.92836792184266080580e-1),1503            static_cast<RealType>(6.64332913820571574875e-2),1504            static_cast<RealType>(5.59456053716889879620e-3),1505            static_cast<RealType>(3.44201583106671507027e-4),1506            static_cast<RealType>(2.74554105716911980435e-6),1507        };1508 1509        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1510    }1511    else if (ilogb(x) < 16) {1512        RealType t = log2(ldexp(x, -8));1513 1514        // Rational Approximation1515        // Maximum Relative Error: 1.5585e-181516        BOOST_MATH_STATIC const RealType P[9] = {1517            static_cast<RealType>(6.44802371584831601817e-1),1518            static_cast<RealType>(2.74177359656349204309e-1),1519            static_cast<RealType>(5.53659240731871433983e-2),1520            static_cast<RealType>(6.97653365560511851744e-3),1521            static_cast<RealType>(6.17058143529799037402e-4),1522            static_cast<RealType>(3.94979574476108021136e-5),1523            static_cast<RealType>(1.88315864113369221822e-6),1524            static_cast<RealType>(6.10941845734962836501e-8),1525            static_cast<RealType>(1.39403332890347813312e-9),1526        };1527        BOOST_MATH_STATIC const RealType Q[9] = {1528            static_cast<RealType>(1),1529            static_cast<RealType>(4.32345127287830884682e-1),1530            static_cast<RealType>(8.70500634789942065799e-2),1531            static_cast<RealType>(1.09253956356393590470e-2),1532            static_cast<RealType>(9.72576825490118007977e-4),1533            static_cast<RealType>(6.18656322285414147985e-5),1534            static_cast<RealType>(2.96375876501823390564e-6),1535            static_cast<RealType>(9.58622809886777038970e-8),1536            static_cast<RealType>(2.19059124630695181004e-9),1537        };1538 1539        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1540    }1541    else if (ilogb(x) < 32) {1542        RealType t = log2(ldexp(x, -16));1543 1544        // Rational Approximation1545        // Maximum Relative Error: 8.4773e-171546        BOOST_MATH_STATIC const RealType P[9] = {1547            static_cast<RealType>(6.36685748306554972132e-1),1548            static_cast<RealType>(2.22217783148381285219e-1),1549            static_cast<RealType>(3.79173960692559280353e-2),1550            static_cast<RealType>(4.13394722917837684942e-3),1551            static_cast<RealType>(3.18141233442663766089e-4),1552            static_cast<RealType>(1.79745613243740552736e-5),1553            static_cast<RealType>(7.47632665728046334131e-7),1554            static_cast<RealType>(2.18258684729250152138e-8),1555            static_cast<RealType>(3.93038365129320422968e-10),1556        };1557        BOOST_MATH_STATIC const RealType Q[9] = {1558            static_cast<RealType>(1),1559            static_cast<RealType>(3.49087806008685701060e-1),1560            static_cast<RealType>(5.95568283529034601477e-2),1561            static_cast<RealType>(6.49386742119035055908e-3),1562            static_cast<RealType>(4.99721374204563274865e-4),1563            static_cast<RealType>(2.82348248031305043777e-5),1564            static_cast<RealType>(1.17436903872210815656e-6),1565            static_cast<RealType>(3.42841159307801319359e-8),1566            static_cast<RealType>(6.17382517100568714012e-10),1567        };1568 1569        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1570    }1571    else if (ilogb(x) < 64) {1572        RealType t = log2(ldexp(x, -32));1573 1574        // Rational Approximation1575        // Maximum Relative Error: 4.1441e-171576        BOOST_MATH_STATIC const RealType P[9] = {1577            static_cast<RealType>(6.36619774420718062663e-1),1578            static_cast<RealType>(2.68594096777677177874e-1),1579            static_cast<RealType>(5.50713044649497737064e-2),1580            static_cast<RealType>(7.26574134143434960446e-3),1581            static_cast<RealType>(6.89173530168387629057e-4),1582            static_cast<RealType>(4.87688310559244353811e-5),1583            static_cast<RealType>(2.84218580121660744969e-6),1584            static_cast<RealType>(9.65240367429172366675e-8),1585            static_cast<RealType>(5.21722720068664704240e-9),1586        };1587        BOOST_MATH_STATIC const RealType Q[9] = {1588            static_cast<RealType>(1),1589            static_cast<RealType>(4.21906621389193043384e-1),1590            static_cast<RealType>(8.65058026826346828750e-2),1591            static_cast<RealType>(1.14129998157398060009e-2),1592            static_cast<RealType>(1.08255124950652385121e-3),1593            static_cast<RealType>(7.66059006900869004871e-5),1594            static_cast<RealType>(4.46449501653114622960e-6),1595            static_cast<RealType>(1.51619602364037777665e-7),1596            static_cast<RealType>(8.19520132288940649002e-9),1597        };1598 1599        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1600    }1601    else {1602        result = 2 / (constants::pi<RealType>() * x);1603    }1604 1605    return result;1606}1607 1608 1609template <class RealType>1610BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_plus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 113>&)1611{1612    BOOST_MATH_STD_USING1613    RealType result;1614 1615    if (x < 1) {1616        // Rational Approximation1617        // Maximum Relative Error: 2.6472e-361618        // LCOV_EXCL_START1619        BOOST_MATH_STATIC const RealType P[14] = {1620            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.34761298487625202628055609797763667089e-1),1621            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67589195401255255724121983550745957195e0),1622            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.07502511824371206858547365520593277966e0),1623            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.58354381655514028012912292026393699991e0),1624            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.26470588572701739953294573496059174764e-1),1625            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.09494168186680012705692462031819276746e-1),1626            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.47385718073281027400744626077865581325e-2),1627            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.69107567947502492044754464589464306928e-2),1628            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.39641345689672620514703813504927833352e-3),1629            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.27003930699448633502508661352994055898e-4),1630            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.26124673422692247711088651516214728305e-5),1631            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.92103390710025598612731036700549416611e-7),1632            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.49572523814120679048097861755172556652e-11),1633            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.50719933268462244255954307285373705456e-13),1634        };1635        BOOST_MATH_STATIC const RealType Q[13] = {1636            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1637            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.05332427324361912631483249892199461926e0),1638            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.46280417679002004953145547112352398783e0),1639            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.10429833573651169023447466152999802738e0),1640            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.63535585818618617796313647799029559407e0),1641            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24103322502244219003850826414302390557e0),1642            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.38359438431541204276767900393091886363e-1),1643            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.16687583686405832820912406970664239423e-1),1644            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.31451667102532056871497958974899742424e-2),1645            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.31646175307279119467894327494418625431e-3),1646            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.22334681489114534492425036698050444462e-4),1647            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.86326948577818727263376488455223120476e-5),1648            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.53867591038308710930446815360572461884e-7),1649        };1650        // LCOV_EXCL_STOP1651        result = tools::evaluate_polynomial(P, x) / tools::evaluate_polynomial(Q, x);1652    }1653    else if (x < 2) {1654        RealType t = x - 1;1655 1656        // Rational Approximation1657        // Maximum Relative Error: 1.2387e-361658        // LCOV_EXCL_START1659        BOOST_MATH_STATIC const RealType P[12] = {1660            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.22133240358047652363270514524313049653e-1),1661            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.35860518549481281929441026718420080571e-1),1662            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.89900189271177970319691370395978805326e-1),1663            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.84682995288088652145572170736339265315e-1),1664            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.10748045562955323875797887939420022326e-2),1665            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.00246325517647746481631710824413702051e-2),1666            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.02998394686245118431020407235000441722e-3),1667            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.06095284318730009040434594746639110387e-4),1668            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.91754425158654496372516241124447726889e-5),1669            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.37288564874584819097890713305968351561e-7),1670            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.77487285800889132325390488044487626942e-9),1671            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.41654614425073025870130302460301244273e-13),1672        };1673        BOOST_MATH_STATIC const RealType Q[12] = {1674            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1675            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.13058739144695658589427075788960660400e0),1676            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.11792528400843967390452475642793635419e0),1677            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.28794756779085737559146475126886069030e0),1678            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.29339015472607099189295465796550367819e-1),1679            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.53434372685847620864540166752049026834e-1),1680            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.17610372643685730837081191600424913542e-2),1681            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.64455304425865128680681864919048610730e-3),1682            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.62357689170951502920019033576939977973e-4),1683            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.89912258835489782923345357128779660633e-5),1684            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.76323449710934127736624596886862488066e-7),1685            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21524231900555452527639738371019517044e-8),1686        };1687        // LCOV_EXCL_STOP1688        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1689    }1690    else if (x < 4) {1691        RealType t = x - 2;1692 1693        // Rational Approximation1694        // Maximum Relative Error: 1.2281e-351695        // LCOV_EXCL_START1696        BOOST_MATH_STATIC const RealType P[13] = {1697            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.95892137955791216377776422765473500279e-1),1698            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.65957634570689820998348206103212047458e-1),1699            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.34657686985192350529330481818991619730e-1),1700            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.43985500841002490334046057189458709493e-1),1701            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.09876223028004323158413173719329449720e-2),1702            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.04194660038290410425299531094974709019e-3),1703            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.09780604136364125990393172827373829860e-3),1704            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.02676079027875648517286351062161581740e-4),1705            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.30298199082321832830328345832636435982e-6),1706            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.33633965123855006982811143987691483957e-7),1707            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.46384114966020719170903077536685621119e-9),1708            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.07058773850795175564735754911699285828e-11),1709            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.76765053309825506619419451346428518606e-16),1710        };1711        BOOST_MATH_STATIC const RealType Q[13] = {1712            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1713            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.89758965744489334954041814073547951925e0),1714            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.65985298582650601001220682594742473012e0),1715            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.81017086203232617734714711306180675445e-1),1716            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.14481301672800918591822984940714490526e-1),1717            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.90605450026850685321372623938646722657e-2),1718            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.42447999818015246265718131846902731574e-2),1719            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.83426770079526980292392341278413549820e-3),1720            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.65073357441521690641768959521412898756e-4),1721            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.90437453546925074707222505750595530773e-6),1722            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.63458145595422196447107547750737429872e-7),1723            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.94457070577990681786301801930765271001e-9),1724            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.80986568964737305842778359322566801845e-11),1725        };1726        // LCOV_EXCL_STOP1727        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1728    }1729    else if (x < 8) {1730        RealType t = x - 4;1731 1732        // Rational Approximation1733        // Maximum Relative Error: 5.3269e-361734        // LCOV_EXCL_START1735        BOOST_MATH_STATIC const RealType P[14] = {1736            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.73159318667565938775602634998889798568e-1),1737            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.95149372103869634275319490207451722385e-1),1738            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.87504411659823400690797222216564651939e-2),1739            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.94571385159717824767058200278511014560e-2),1740            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.71656210265434934399632978675652106638e-3),1741            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.51248899957476233641240573020681464290e-4),1742            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.74490600490886011190565727721143414249e-5),1743            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.07537323853509621126318424069471060527e-6),1744            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.59167561354023258538869598891502822922e-7),1745            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.72608361427131857269675430568328018022e-9),1746            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.54143016370650707528704927655983490119e-11),1747            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.07936446902207128577031566135957311260e-13),1748            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.73506415766100115673754920344659223382e-19),1749            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.66918494546396383814682000746818494148e-21),1750        };1751        BOOST_MATH_STATIC const RealType Q[13] = {1752            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1753            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34854858486201481385140426291984169791e0),1754            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.25379978655428608198799717171321453517e-1),1755            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.01905621587554903438286661709763596137e-1),1756            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.31293339647901753103699339801273898688e-2),1757            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.22793491714510746538048140924864505813e-2),1758            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45360205736839126407568005196865547577e-3),1759            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20918479556021574336548106785887700883e-4),1760            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.91450617548036413606169102407934734864e-6),1761            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.59940586452863361281618661053014404930e-7),1762            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.93918243796178165623395356401173295690e-9),1763            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.14578198844767847381800490360878776998e-11),1764            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.25951924258762195043744665124187621023e-13),1765        };1766        // LCOV_EXCL_STOP1767        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1768    }1769    else if (x < 16) {1770        RealType t = x - 8;1771 1772        // Rational Approximation1773        // Maximum Relative Error: 4.8719e-361774        // LCOV_EXCL_START1775        BOOST_MATH_STATIC const RealType P[14] = {1776            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.90469147411748292410422813492550092930e-2),1777            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.20196598836093298098360769875443462143e-2),1778            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.92579652651763461802771336515384878994e-2),1779            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.50439147419887323351995227585244144060e-3),1780            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.13214742069751393867851080954754449610e-4),1781            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.29648648382394801501422003194522139519e-5),1782            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.80420399625810952886117129805960917210e-6),1783            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.73059844436212109742132138573157222143e-8),1784            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.66835461298243901306176013397428732836e-9),1785            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.61808423521250921041207160217989047728e-11),1786            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.39300098366988229510997966682317724011e-13),1787            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.09447823064238788960158765421669935819e-15),1788            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.76962456941948786610101052244821659252e-18),1789            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.56004343709960620209823076030906442732e-25),1790        };1791        BOOST_MATH_STATIC const RealType Q[14] = {1792            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1793            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.22996422556023111037354479836605618488e-1),1794            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.05244279198013248402385148537421114680e-1),1795            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.72477335169177427114629223821992187549e-2),1796            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.76404568980852320252614006021707040788e-3),1797            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.79959793426748071158513573279263946303e-4),1798            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.93524788220877416643145672816678561612e-5),1799            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.46692111397574773931528693806744007042e-6),1800            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20764040991846422990601664181377937629e-7),1801            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.84452460717254884659858711994943474216e-9),1802            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.30317379590981344496250492107505244036e-11),1803            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.83736710938966780518785861828424593249e-13),1804            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.72943283576264035508862984899450025895e-15),1805            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77791087299927741360821362607419036797e-18),1806        };1807        // LCOV_EXCL_STOP1808        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1809    }1810    else if (x < 32) {1811        RealType t = x - 16;1812 1813        // Rational Approximation1814        // Maximum Relative Error: 5.3269e-351815        // LCOV_EXCL_START1816        BOOST_MATH_STATIC const RealType P[14] = {1817            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.35157264931262089761621934621402648954e-2),1818            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.51407493866635569361305338029611888082e-2),1819            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.30886132894858313459359493329266696766e-3),1820            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.02488735053241778868198537544867092626e-4),1821            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.12676055870976203566712705442945186614e-5),1822            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.14136757304740001515364737551021389293e-7),1823            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01514327671186735593984375829685709678e-8),1824            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63783530594707477852365258482782354261e-10),1825            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67623013776194044717097141295482922572e-12),1826            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01397549144502050693284434189497148608e-14),1827            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.16720246008161901837639496002941412533e-17),1828            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.70776057051329137176494230292143483874e-20),1829            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.02838174509144355795908173352005717435e-26),1830            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.07343581702278433243268463675468320030e-30),1831        };1832        BOOST_MATH_STATIC const RealType Q[13] = {1833            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1834            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.13166129191902183515154099741529804400e-1),1835            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.58587877615076239769720197025023333190e-2),1836            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.14619910799508944167306046977187889556e-3),1837            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.66671218029939293563302720748492945618e-4),1838            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.67192565058098643223751044962155343554e-5),1839            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.68397391192695060767615969382391508636e-7),1840            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.94009678375859797198831431154760916459e-8),1841            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91901267471125881702216121486397689200e-10),1842            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.83697721782125852878533856266722593909e-12),1843            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.65409094893730117412328297801448869154e-14),1844            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.04202174160401885595563150562438901685e-17),1845            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.82104711207466136473754349696286794448e-20),1846        };1847        // LCOV_EXCL_STOP1848        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1849    }1850    else if (x < 64) {1851        RealType t = x - 32;1852 1853        // Rational Approximation1854        // Maximum Relative Error: 1.0937e-351855        // LCOV_EXCL_START1856        BOOST_MATH_STATIC const RealType P[14] = {1857            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.11253031965493064317003259449214452745e-2),1858            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.66886306590939856622089350675801752704e-3),1859            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77786526684921036345823450504680078696e-4),1860            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20343424607276252128027697088363135591e-5),1861            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.29196073776799916444272401212341853981e-7),1862            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.92132293422644089278551376756604946339e-9),1863            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.07465707745270914645735055945940815947e-11),1864            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.54424785613626844024154493717770471131e-13),1865            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.74829439628215654062512023453584521531e-15),1866            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.03470347880592072854295353687395319489e-18),1867            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21113051919776165865529140783521696702e-20),1868            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.83719812218384126931626509884648891889e-24),1869            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.41009036423458926116066353864843586169e-31),1870            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04965807080681693416200699806159303323e-34),1871        };1872        BOOST_MATH_STATIC const RealType Q[13] = {1873            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1874            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.06133417626680943824361625182288165823e-1),1875            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87991711814130682492211639336942588926e-2),1876            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.98342969282034680444232201546039059255e-4),1877            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.41940454945139684365514171982891170420e-5),1878            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.90481418770909949109210069475433304086e-7),1879            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.25451856391453896652473393039014954572e-8),1880            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.36349120987010174609224867075354225138e-10),1881            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.94716367816033715208164909918572061643e-13),1882            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.67466470065187852967064897686894407151e-15),1883            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.31509787633232139845762764472649607555e-17),1884            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.93147765040455324545205202900563337981e-20),1885            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07370974123835247210519262324524537634e-23),1886        };1887        // LCOV_EXCL_STOP1888        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);1889    }1890    else if (ilogb(x) < 8) {1891        RealType t = log2(ldexp(x, -6));1892 1893        // Rational Approximation1894        // Maximum Relative Error: 3.1671e-351895        // LCOV_EXCL_START1896        BOOST_MATH_STATIC const RealType P[13] = {1897            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.60754766433212615408805486898847664740e-1),1898            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.76143516602438873568296501921670869526e-1),1899            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.25254763859315398784817302471631188095e-1),1900            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.58650277225655302085863010927524053686e-2),1901            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.92227773746592457803942136197158658110e-2),1902            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77170481512334811333255898903061802339e-3),1903            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.97864282716826576471164657368231427231e-4),1904            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.44243747123065035356982629201975914275e-5),1905            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.54592817957461998135980337838429682406e-6),1906            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.52110831321633404722419425039513444319e-8),1907            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75030698219998735693228347424295850790e-9),1908            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.08894662488905377548940479566994482806e-11),1909            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11472306961184868827300852021969296872e-12),1910        };1911        BOOST_MATH_STATIC const RealType Q[13] = {1912            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1913            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04202386226609593823214781180612848612e0),1914            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.07648212684952405730772649955008739292e-1),1915            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50646784687432427178774105515508540021e-1),1916            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.02521400964223268224629095722841793118e-2),1917            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.35374201758795213489427690294679848997e-3),1918            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.67290684433876221744005507243460683585e-4),1919            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.83834977086311601362115427826807705185e-5),1920            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.43236252790815493406777552261402865674e-6),1921            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17693398496807851224497995174884274919e-7),1922            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.34161978291568722756523120609497435933e-9),1923            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.10819003833429876218381886615930538464e-10),1924            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.75674945131892236663189757353419870796e-12),1925        };1926        // LCOV_EXCL_STOP1927        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1928    }1929    else if (ilogb(x) < 16) {1930        RealType t = log2(ldexp(x, -8));1931 1932        // Rational Approximation1933        // Maximum Relative Error: 6.8517e-351934        // LCOV_EXCL_START1935        BOOST_MATH_STATIC const RealType P[18] = {1936            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.44802371584831601817146389426921705500e-1),1937            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.32962058761590152378007743852342151897e-1),1938            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.93461601407042255925193793376118641680e-1),1939            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.55533612685775705468614711945893908392e-2),1940            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.76358919439168503100357154639460097607e-2),1941            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.74131615534562303144125602950691629908e-3),1942            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.34470363614899824502654995633001232079e-4),1943            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.29020592733459891982428815398092077306e-5),1944            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.65794017754267756566941255128608603072e-6),1945            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.78550878208007836345763926019855723350e-7),1946            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.00524022519953193863682806155339574713e-8),1947            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.75977976583947697667784048133959750133e-10),1948            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.89287460618943500291479647438555099783e-11),1949            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.27647727947590174240069836749437647626e-13),1950            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.70582660582766959108625375415057711766e-14),1951            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.68499175244574169768386088971844067765e-16),1952            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.84493774639724473576782806157757824413e-18),1953            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.03526708437207438952843827018631758857e-20),1954        };1955        BOOST_MATH_STATIC const RealType Q[18] = {1956            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),1957            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.88770963972332750838571146142568699263e-1),1958            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.60273143287476497658795203149608758815e-1),1959            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34393017137025732376113353720493995469e-1),1960            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77086140458900002000076127880391602253e-2),1961            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.30613589576665986239534705717153313682e-3),1962            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.25355055770024448240128702278455001334e-4),1963            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.16820392686312531160900884133254461634e-5),1964            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.17518073757769640772428097588524967431e-6),1965            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.80469112215756035261419102003591533407e-7),1966            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.57898123952200478396366475124854317231e-8),1967            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.47675840885248141425130440389244781221e-10),1968            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.97339213584115778189141444065113447170e-11),1969            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.85845602624148484344802432304264064957e-13),1970            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.67971825826765902713812866354682255811e-14),1971            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.78795543918651402032912195982033010270e-16),1972            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.18166403020940538730241286150437447698e-18),1973            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.47995312365747437038996228794650773820e-20),1974        };1975        // LCOV_EXCL_STOP1976        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);1977    }1978    else if (ilogb(x) < 32) {1979        RealType t = log2(ldexp(x, -16));1980 1981        // Rational Approximation1982        // Maximum Relative Error: 6.5315e-351983        // LCOV_EXCL_START1984        BOOST_MATH_STATIC const RealType P[18] = {1985            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36685748306554972131586673701426039950e-1),1986            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75892450098649456865500477195142009984e-1),1987            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.77167300709199375935767980419262418694e-2),1988            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.76657987434662206916119089733639111866e-3),1989            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.55003354250569146980730594644539195376e-4),1990            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.64102805555049236216024194001407792885e-5),1991            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.36247488122195469059567496833809879653e-6),1992            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63710218182036673197103906176200862606e-7),1993            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.60629446465979003842091012679929186607e-9),1994            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22712292003775206105713577811447961965e-10),1995            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.28539646473359376707298867613704501434e-12),1996            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.47893806904387088760579412952474847897e-13),1997            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.86809622035928392542821045232270554753e-15),1998            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.47935154807866802001012566914901169147e-17),1999            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.40623855123515207599160827187101517978e-19),2000            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.60738876249485914019826585865464103800e-21),2001            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29257874466803586327275841282905821499e-23),2002            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.06781616867813418930916928811492801723e-31),2003        };2004        BOOST_MATH_STATIC const RealType Q[17] = {2005            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2006            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.33391038950576592915531240096703257292e-1),2007            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.06598147816889621749840662500099582486e-2),2008            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21997213397347849640608088189055469954e-2),2009            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18596259982438670449688554459343971428e-3),2010            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.86085649929528605647139297483281849158e-5),2011            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.28178198640304770056854166079598253406e-6),2012            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.57155234493390297220982397633114062827e-7),2013            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.03771216318243964850930846579433365529e-8),2014            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.49837117625052865973189772546210716556e-10),2015            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.87302306206908338457432167186661027909e-12),2016            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.32312467403555290915110093627622951484e-13),2017            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.50516769529388616534895145258103120804e-15),2018            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.03618834064000582669276279973634033592e-17),2019            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.49205787058220657972891114812453768100e-19),2020            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.23730041323226753771240724078738146658e-21),2021            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.60115971929371066362271909482282503973e-23),2022        };2023        // LCOV_EXCL_STOP2024        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);2025    }2026    else if (ilogb(x) < 64) {2027        RealType t = log2(ldexp(x, -32));2028 2029        // Rational Approximation2030        // Maximum Relative Error: 1.0538e-352031        // LCOV_EXCL_START2032        BOOST_MATH_STATIC const RealType P[19] = {2033            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619774420718062663274858007687066488e-1),2034            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.30268560944740805268408378762250557522e-1),2035            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.09208091036436297425427953080968023835e-2),2036            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.74943166696408995577495065480328455423e-3),2037            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.03759498310898586326086395411203400316e-4),2038            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.67261192787197720215143001944093963953e-5),2039            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.42934578939412238889174695091726883834e-6),2040            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.32436794923711934610724023467723195718e-8),2041            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.35077626369701051583611707128788137675e-9),2042            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.40836846523442062397035620402082560833e-11),2043            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.98783806012035285862106614557391807137e-12),2044            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.53869567415427145730376778932236900838e-14),2045            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.76521311340629419738016523643187305675e-16),2046            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.41298928566351198899106243930173421965e-17),2047            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85552706372195482059144049293491755419e-19),2048            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.89780987301820615664133438159710338126e-21),2049            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.37965575161090804572561349091024723962e-23),2050            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.58944184323201470938493323680744408698e-26),2051            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.35050162268451658064792430214910233545e-40),2052        };2053        BOOST_MATH_STATIC const RealType Q[18] = {2054            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2055            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.61705010674524952791495931314010679992e-1),2056            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.42782564900556152436041716057503104160e-2),2057            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.46038982970912591009739894441944631471e-3),2058            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.34223936001873800295785537132905986678e-4),2059            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.19812900355867749521882613003222797586e-5),2060            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.24521111398180921205229795007228494287e-6),2061            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.93429394949368809594897465724934596442e-8),2062            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.69259071867341718986156650672535675726e-9),2063            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.16370379759046264903196063336023488714e-10),2064            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.12248872253003553623419554868303473929e-12),2065            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.12936649424676303532477421399492615666e-14),2066            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.37683645610869385656713212194971883914e-15),2067            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21951837982136344238516771475869548147e-17),2068            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91465509588513270823718962232280739302e-19),2069            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98107277753797219142748868489983891831e-21),2070            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.16715818685246698314459625236675887448e-23),2071            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.77987471623502330881961633434056523159e-26),2072        };2073        // LCOV_EXCL_STOP2074        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);2075    }2076    else if (ilogb(x) < 128) {2077        RealType t = log2(ldexp(x, -64));2078 2079        // Rational Approximation2080        // Maximum Relative Error: 2.2309e-352081        // LCOV_EXCL_START2082        BOOST_MATH_STATIC const RealType P[18] = {2083            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619772367581344040890134127619524371e-1),2084            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.72522424358877592972375801826826390634e-1),2085            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.74749058021341871895402838175268752603e-2),2086            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.95136532385982168410320513292144834602e-3),2087            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.10500792867575154180588502397506694341e-4),2088            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.48101840822895419487033057691746982216e-5),2089            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.22577211783918426674527460572438843266e-6),2090            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.30499751609793470641331626931224574780e-7),2091            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07043764292750472900578756659402327450e-8),2092            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.28345765853059515246787820662932506931e-10),2093            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48838700086419232178247558529254516870e-11),2094            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.51015062047870581993810118835353083110e-13),2095            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.19087584836023628483830612541904830502e-14),2096            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.74405125338538967114280887107628943111e-16),2097            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.34493122865874905104884954420903910585e-18),2098            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.33794243240353561095702650271950891264e-20),2099            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07931799710240978706633227327649731325e-21),2100            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.60935135769719557933955672887720342220e-23),2101        };2102        BOOST_MATH_STATIC const RealType Q[18] = {2103            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2104            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.28077223152164982690351137450174450926e-1),2105            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.02813709168750724641877726632095676090e-2),2106            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24899754437233214579860634420198464016e-2),2107            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27313166830073839667108783881090842820e-3),2108            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01803599095361490387188839658640162684e-4),2109            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.63782732057408167492988043000134055952e-6),2110            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.62068163155799642595981598061154626504e-7),2111            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.68143951757351157612001096085234448512e-8),2112            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.72843955600132743549395255544732133507e-10),2113            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.33795283380674591910584657171640729449e-11),2114            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.08452802793967494363851669977089389376e-13),2115            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87062340827301546650149031133192913586e-14),2116            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.31034562935470222182311379138749593572e-16),2117            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.39579834094849668082821388907704276985e-18),2118            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46680056726416759571957577951115309094e-19),2119            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.69538874529209016624246362786229032706e-21),2120            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.52796320119313458991885552944744518437e-23),2121        };2122        // LCOV_EXCL_STOP2123        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * x);2124    }2125    else {2126        result = 2 / (constants::pi<RealType>() * x);2127    }2128 2129    return result;2130}2131 2132template <class RealType>2133BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_minus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 53>&)2134{2135    BOOST_MATH_STD_USING2136    RealType result;2137 2138    if (x >= -1) {2139        RealType t = x + 1;2140 2141        // Rational Approximation2142        // Maximum Relative Error: 4.8279e-172143        BOOST_MATH_STATIC const RealType P[8] = {2144            static_cast<RealType>(9.61609610406317335842e-2),2145            static_cast<RealType>(3.91836314722738553695e-1),2146            static_cast<RealType>(6.79862925205625107133e-1),2147            static_cast<RealType>(6.52516594941817706368e-1),2148            static_cast<RealType>(3.78594163612581127974e-1),2149            static_cast<RealType>(1.37741592243008345389e-1),2150            static_cast<RealType>(3.16100502353317199197e-2),2151            static_cast<RealType>(3.94935603975622336575e-3),2152        };2153        BOOST_MATH_STATIC const RealType Q[8] = {2154            static_cast<RealType>(1),2155            static_cast<RealType>(1.76863983252615276767e0),2156            static_cast<RealType>(1.81486018095087241378e0),2157            static_cast<RealType>(1.17295504548962999723e0),2158            static_cast<RealType>(5.33998066342362562313e-1),2159            static_cast<RealType>(1.66508320794082632235e-1),2160            static_cast<RealType>(3.42192028846565504290e-2),2161            static_cast<RealType>(3.94691613177524994796e-3),2162        };2163 2164        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2165    }2166    else if (x >= -2) {2167        RealType t = x + 2;2168 2169        // Rational Approximation2170        // Maximum Relative Error: 2.3675e-172171        BOOST_MATH_STATIC const RealType P[11] = {2172            static_cast<RealType>(7.07114056489178077423e-4),2173            static_cast<RealType>(7.35277969197058909845e-3),2174            static_cast<RealType>(3.45402694579204809691e-2),2175            static_cast<RealType>(9.62849773112695332289e-2),2176            static_cast<RealType>(1.75738736725818007992e-1),2177            static_cast<RealType>(2.18309266582058485951e-1),2178            static_cast<RealType>(1.85680388782727289455e-1),2179            static_cast<RealType>(1.06177394398691169291e-1),2180            static_cast<RealType>(3.94880388335722224211e-2),2181            static_cast<RealType>(9.46543177731050647162e-3),2182            static_cast<RealType>(1.50949646857411896396e-3),2183        };2184        BOOST_MATH_STATIC const RealType Q[11] = {2185            static_cast<RealType>(1),2186            static_cast<RealType>(1.19520021153535414164e0),2187            static_cast<RealType>(2.24057032777744601624e0),2188            static_cast<RealType>(1.63635577968560162720e0),2189            static_cast<RealType>(1.58952087228427876880e0),2190            static_cast<RealType>(7.63062254749311648018e-1),2191            static_cast<RealType>(4.65805990343825931327e-1),2192            static_cast<RealType>(1.45821531714775598887e-1),2193            static_cast<RealType>(5.42393925507104531351e-2),2194            static_cast<RealType>(9.84276292481407168381e-3),2195            static_cast<RealType>(1.54787649925009672534e-3),2196        };2197 2198        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2199    }2200    else {2201        const static RealType lambda_bias = static_cast<RealType>(1.45158270528945486473); // (= log(pi/2)+1)2202 2203        RealType sigma = exp(-x * constants::pi<RealType>() / 2 - lambda_bias);2204        RealType s = exp(-sigma) / sqrt(sigma);2205 2206        if (x >= -4) {2207            RealType t = -x - 2;2208 2209            // Rational Approximation2210            // Maximum Relative Error: 6.6532e-172211            BOOST_MATH_STATIC const RealType P[9] = {2212                static_cast<RealType>(3.71658823632747235572e-1),2213                static_cast<RealType>(2.81493346318174084721e-1),2214                static_cast<RealType>(1.80052521696460721846e-1),2215                static_cast<RealType>(7.65907659636944822120e-2),2216                static_cast<RealType>(2.33352148213280934280e-2),2217                static_cast<RealType>(5.02308701022480574067e-3),2218                static_cast<RealType>(6.29239919421134075502e-4),2219                static_cast<RealType>(8.36993181707604609065e-6),2220                static_cast<RealType>(-8.38295154747385945293e-6),2221            };2222            BOOST_MATH_STATIC const RealType Q[9] = {2223                static_cast<RealType>(1),2224                static_cast<RealType>(6.62107509936390708604e-1),2225                static_cast<RealType>(4.72501892305147483696e-1),2226                static_cast<RealType>(1.84446743813050604353e-1),2227                static_cast<RealType>(5.99971792581573339487e-2),2228                static_cast<RealType>(1.24751029844082800143e-2),2229                static_cast<RealType>(1.56705297654475773870e-3),2230                static_cast<RealType>(2.36392472352050487445e-5),2231                static_cast<RealType>(-2.11667044716450080820e-5),2232            };2233 2234            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2235        }2236        else if (x >= -5.1328125) {2237            RealType t = -x - 4;2238 2239            // Rational Approximation2240            // Maximum Relative Error: 2.6331e-172241            BOOST_MATH_STATIC const RealType P[10] = {2242                static_cast<RealType>(3.97500903816385095134e-1),2243                static_cast<RealType>(5.08559630146730380854e-1),2244                static_cast<RealType>(2.99190443368166803486e-1),2245                static_cast<RealType>(1.07339363365158174786e-1),2246                static_cast<RealType>(2.61694301269384158162e-2),2247                static_cast<RealType>(4.58386867966451237870e-3),2248                static_cast<RealType>(5.80610284231484509069e-4),2249                static_cast<RealType>(5.07249042503156949021e-5),2250                static_cast<RealType>(2.91644292826084281875e-6),2251                static_cast<RealType>(9.75453868235609527534e-12),2252            };2253            BOOST_MATH_STATIC const RealType Q[9] = {2254                static_cast<RealType>(1),2255                static_cast<RealType>(1.27376091725485414303e0),2256                static_cast<RealType>(7.49829208702328578188e-1),2257                static_cast<RealType>(2.69157374996960976399e-1),2258                static_cast<RealType>(6.55795320040378662663e-2),2259                static_cast<RealType>(1.14912646428788757804e-2),2260                static_cast<RealType>(1.45541420582309879973e-3),2261                static_cast<RealType>(1.27135040794481871472e-4),2262                static_cast<RealType>(7.31138551538712031061e-6),2263            };2264 2265            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2266        }2267        else {2268            result = 0;2269        }2270    }2271 2272    return result;2273}2274 2275template <class RealType>2276BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_minus_imp_prec(const RealType& x, const boost::math::integral_constant<int, 113>&)2277{2278    BOOST_MATH_STD_USING2279    RealType result;2280 2281    if (x >= -1) {2282        RealType t = x + 1;2283 2284        // Rational Approximation2285        // Maximum Relative Error: 1.2055e-362286        // LCOV_EXCL_START2287        BOOST_MATH_STATIC const RealType P[16] = {2288            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.61609610406317335842332400044553397267e-2),2289            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.74152295981095898203847178356629061821e-1),2290            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.58642905042588731020840168744866124345e0),2291            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.69370085525311304330141932309908104187e0),2292            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.14888713497930800611167630826754270499e0),2293            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.69123861559106636252620023643265102867e0),2294            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.74273532954853421626852458737661546439e0),2295            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.73534665976007761924923962996725209700e-1),2296            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.42543389723715037640714282663089570985e-1),2297            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.05120903211852044362181935724880384488e-1),2298            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.49586169587615171270941258051088627885e-2),2299            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.46047939521303565932576405363107506886e-3),2300            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.68248726161641913236972878212857788320e-4),2301            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.60663638253775180681171554635861859625e-5),2302            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.76463460016745893121574217030494989443e-6),2303            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.08380585744336744543979680558024295296e-12),2304        };2305        BOOST_MATH_STATIC const RealType Q[15] = {2306            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2307            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.66458574743150749245922924142120646408e0),2308            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.87010262350733534202724862784081296105e0),2309            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.51107149980251214963849267707173045433e0),2310            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.71158207369578457239679595370389431171e0),2311            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.37188705505573668092513124472448362633e0),2312            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.95647530096628718695081507038921183627e0),2313            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30278895428001081342301218278371140110e0),2314            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.61322060563420594659487640090297303892e-1),2315            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30529729106312748824241317854740876915e-1),2316            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.90465740298431311519387111139787971960e-2),2317            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.92760416706194729215037805873466599319e-3),2318            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.02070496615845146626690561655353212151e-4),2319            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.72080705566714681586449384371609107346e-5),2320            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.76433504120625478720883079263866245392e-6),2321        };2322        // LCOV_EXCL_STOP2323        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2324    }2325    else if (x >= -2) {2326        RealType t = x + 2;2327 2328        // Rational Approximation2329        // Maximum Relative Error: 3.4133e-362330        // LCOV_EXCL_START2331        BOOST_MATH_STATIC const RealType P[19] = {2332            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.07114056489178077422539043012078031613e-4),2333            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.18006784954579394004360967455655021959e-3),2334            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.60309646092161147676756546417366564213e-2),2335            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.13479499932401667065782086621368143322e-1),2336            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.68587439643060549883916236839613331692e-1),2337            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.12366494749830793876926914920462629077e0),2338            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.70739124754664545339208363069646589169e0),2339            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.04073482998938337661285862393345731336e0),2340            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.94833709787596305918524943438549684109e0),2341            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50214412821697972546222929550410139790e0),2342            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.43105005523280337071698704765973602884e-1),2343            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.85396789833278250392015217207198739243e-1),2344            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.05690359993570736607428746439280858381e-1),2345            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.17297815188944531843360083791153470475e-2),2346            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.03913601629627587800587620822216769010e-2),2347            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.61963034255210565218722882961703473760e-3),2348            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.99502258440875586452963094474829571000e-4),2349            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.66563884565518965562535171848480872267e-5),2350            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.23954896921292896539048530795544784261e-6),2351        };2352        BOOST_MATH_STATIC const RealType Q[19] = {2353            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2354            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.77934931846682015134812629288297137499e0),2355            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.85052416252910403272283619201501701345e0),2356            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45276747409453182009917448097687214033e1),2357            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87717215449690275562288513806049961791e1),2358            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.96583424263422661540930513525639950307e1),2359            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.73001838976297286477856104855182595364e1),2360            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.29209801725936746054703603946844929105e1),2361            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.31809396176316042818100839595926947461e0),2362            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.62125101720695030847208519302530333864e0),2363            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22912823173107974750307098204717046200e0),2364            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.28404310708078592866397210871397836013e-1),2365            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.33433860799478110495440617696667578486e-1),2366            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01779942752411055394079990371203135494e-1),2367            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.60870827161929649807734240735205100749e-2),2368            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.43275518144078080917466090587075581039e-3),2369            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.80287554756375373913082969626543154342e-4),2370            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.00697535360590561244468004025972321465e-4),2371            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.23883308105457761862174623664449205327e-6),2372        };2373        // LCOV_EXCL_STOP2374        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2375    }2376    else {2377        const static RealType lambda_bias = BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.451582705289454864726195229894882143572); // (= log(pi/2)+1)2378 2379        RealType sigma = exp(-x * constants::pi<RealType>() / 2 - lambda_bias);2380        RealType s = exp(-sigma) / sqrt(sigma);2381 2382        if (x >= -4) {2383            RealType t = -x - 2;2384 2385            // Rational Approximation2386            // Maximum Relative Error: 9.2619e-352387            // LCOV_EXCL_START2388            BOOST_MATH_STATIC const RealType P[19] = {2389                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.71658823632747235572391863987803415545e-1),2390                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.20402452680758356732340074285765302037e-1),2391                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.53870483364594487885882489517365212394e-1),2392                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.73525449564340671962525942038149851804e-2),2393                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.67339872142847248852186397385576389802e-2),2394                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.60644488744851390946293970736919678433e-2),2395                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.33042051950636491987775324999025538357e-2),2396                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.13846819893538329440033115143593487041e-3),2397                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.41648498082970622389678372669789346515e-3),2398                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.74006867625631068946791714035394785978e-4),2399                BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.12238896415831258936563475509362795783e-5),2400                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.88070293465108791701905953972140154151e-5),2401                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.24813015654516014181209691083399092303e-6),2402                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.64092873079064926551281731026589848877e-7),2403                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.09892207654972883190432072151353819511e-8),2404                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.86990125202059013860642688739159455800e-9),2405                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.62986611607135348214220687891374676368e-10),2406                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07567013469555215514702758084138467446e-12),2407                BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.84619752008414239602732630339626773669e-14),2408            };2409            BOOST_MATH_STATIC const RealType Q[17] = {2410                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2411                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.28669950018285475182750690468224641923e-1),2412                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.12421557061005325313661189943328446480e-1),2413                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.68376064122323574208976258468929505299e-1),2414                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22010354939562426718305463635398985290e-1),2415                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.13795955314742199207524303721722785075e-2),2416                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.90452274425830801819532524004271355513e-2),2417                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.38324283887272345859359008873739301544e-3),2418                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.15232844484261129757743512155821350773e-3),2419                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.79562237779621711674853020864686436450e-4),2420                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.64370777996591099856555782918006739330e-4),2421                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.02327782881305686529414731684464770990e-5),2422                BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.27181015755595543140221119020333695667e-6),2423                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01121287947061613072815935956604529157e-6),2424                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.44038164966032378909755215752715620878e-7),2425                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.39138685106442954199109662617641745618e-9),2426                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.83317957765031605023198891326325990178e-10),2427            };2428            // LCOV_EXCL_STOP2429            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2430        }2431        else if (x >= -6.875) {2432            RealType t = -x - 4;2433 2434            // Rational Approximation2435            // Maximum Relative Error: 4.9208e-352436            // LCOV_EXCL_START2437            BOOST_MATH_STATIC const RealType P[20] = {2438                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.97500903816385095134217223320239082420e-1),2439                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.02058997410109156148729828665298333233e0),2440                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30492992901887465108077581566548743407e0),2441                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.08695332228530157560495896731847709498e0),2442                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.54469321766529692240388930552986490213e-1),2443                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.00543201281990041935310905273146022998e-1),2444                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.08633547932070289660163851972658637916e-1),2445                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.15432691192536747268886307936712580254e-2),2446                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.46179071338871656505293487217938889935e-3),2447                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45295210106393905833273975344579255175e-3),2448                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.34638105523514101671944454719592801562e-4),2449                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.15786069528793080046638424661219527619e-5),2450                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.54781306296697568446848038567723598851e-6),2451                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.31977279631544580423883461084970429143e-7),2452                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.56616743805004179430469197497030496870e-8),2453                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.60913959062328670735884196858280987356e-9),2454                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.91123354712008822789348244888916948822e-11),2455                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.82453513391091361890763400931018529659e-12),2456                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.12671859603774617133607658779709622453e-14),2457                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.03211544596001317143519388487481133891e-20),2458            };2459            BOOST_MATH_STATIC const RealType Q[19] = {2460                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2461                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.56188463983858614833914386500628633184e0),2462                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.27273165410457713017446497319550252691e0),2463                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.72495122287308474449946195751088057230e0),2464                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.64049710819255633163836824600620426349e0),2465                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.53329810455612298967902432399110414761e-1),2466                BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.72302144446588066369304547920758875106e-1),2467                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.90680157119357595265085115978578965640e-2),2468                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87039785683949322939618337154059874729e-2),2469                BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.64199530594973983893552925652598080310e-3),2470                BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.88147828823178863054226159776600116931e-4),2471                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.91569503818223078110818909039307983575e-5),2472                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.89289385694964650198403071737653842880e-6),2473                BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.32154679053642509246603754078168127853e-7),2474                BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.43239674842248090516375370051832849701e-8),2475                BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.03349866320207008385913232167927124115e-9),2476                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.98307302768178927108235662166752511325e-10),2477                BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.07996042577029996321821937863373306901e-12),2478                BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.53576500935979732855511826033727522138e-13),2479            };2480            // LCOV_EXCL_STOP2481            result = s * tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2482        }2483        else {2484            result = 0;2485        }2486    }2487 2488    return result;2489}2490 2491template <class RealType>2492BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_imp_prec(const RealType& x, bool complement, const boost::math::integral_constant<int, 53>& tag) {2493    if (x >= 0) {2494        return complement ? landau_cdf_plus_imp_prec(x, tag) : 1 - landau_cdf_plus_imp_prec(x, tag);2495    }2496    else if (x <= 0) {2497        return complement ? 1 - landau_cdf_minus_imp_prec(x, tag) : landau_cdf_minus_imp_prec(x, tag);2498    }2499    else {2500        return boost::math::numeric_limits<RealType>::quiet_NaN();2501    }2502}2503 2504template <class RealType>2505BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_imp_prec(const RealType& x, bool complement, const boost::math::integral_constant<int, 113>& tag) {2506    if (x >= 0) {2507        return complement ? landau_cdf_plus_imp_prec(x, tag) : 1 - landau_cdf_plus_imp_prec(x, tag);2508    }2509    else if (x <= 0) {2510        return complement ? 1 - landau_cdf_minus_imp_prec(x, tag) : landau_cdf_minus_imp_prec(x, tag);2511    }2512    else {2513        return boost::math::numeric_limits<RealType>::quiet_NaN();2514    }2515}2516 2517template <class RealType, class Policy>2518BOOST_MATH_GPU_ENABLED inline RealType landau_cdf_imp(const landau_distribution<RealType, Policy>& dist, const RealType& x, bool complement) {2519    //2520    // This calculates the cdf of the Landau distribution and/or its complement.2521    //2522 2523    BOOST_MATH_STD_USING // for ADL of std functions2524    constexpr auto function = "boost::math::cdf(landau<%1%>&, %1%)";2525    RealType result = 0;2526    RealType location = dist.location();2527    RealType scale = dist.scale();2528    RealType bias = dist.bias();2529 2530    if (false == detail::check_location(function, location, &result, Policy()))2531    {2532        return result;2533    }2534    if (false == detail::check_scale(function, scale, &result, Policy()))2535    {2536        return result;2537    }2538    if (false == detail::check_x(function, x, &result, Policy()))2539    {2540        return result;2541    }2542 2543    typedef typename tools::promote_args<RealType>::type result_type;2544    typedef typename policies::precision<result_type, Policy>::type precision_type;2545    typedef boost::math::integral_constant<int,2546        precision_type::value <= 0 ? 0 :2547        precision_type::value <= 53 ? 53 :2548        precision_type::value <= 113 ? 113 : 02549    > tag_type;2550 2551    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");2552 2553    RealType u = (x - location) / scale + bias;2554 2555    result = landau_cdf_imp_prec(u, complement, tag_type());2556 2557    return result;2558}2559 2560template <class RealType>2561BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_lower_imp_prec(const RealType& p, const boost::math::integral_constant<int, 53>&)2562{2563    BOOST_MATH_STD_USING2564    RealType result;2565 2566    if (p >= 0.375) {2567        RealType t = p - static_cast < RealType>(0.375);2568 2569        // Rational Approximation2570        // Maximum Absolute Error: 3.0596e-172571        BOOST_MATH_STATIC const RealType P[6] = {2572            static_cast<RealType>(3.74557416577759554506e-2),2573            static_cast<RealType>(3.87808262376545756299e0),2574            static_cast<RealType>(4.03092288183382979104e0),2575            static_cast<RealType>(-1.65221829710249468257e1),2576            static_cast<RealType>(-6.99689838230114367276e0),2577            static_cast<RealType>(1.51123479911771488314e1),2578        };2579        BOOST_MATH_STATIC const RealType Q[7] = {2580            static_cast<RealType>(1),2581            static_cast<RealType>(4.37863773851525662884e-1),2582            static_cast<RealType>(-6.35020262707816744534e0),2583            static_cast<RealType>(3.07646508389502660442e-1),2584            static_cast<RealType>(9.72566583784248877260e0),2585            static_cast<RealType>(-2.72338088170674280735e0),2586            static_cast<RealType>(-1.58608957980133006476e0),2587        };2588 2589        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2590    }2591    else if (p >= 0.25) {2592        RealType t = p - static_cast < RealType>(0.25);2593 2594        // Rational Approximation2595        // Maximum Absolute Error: 5.2780e-172596        BOOST_MATH_STATIC const RealType P[7] = {2597            static_cast<RealType>(-4.17764764050720190117e-1),2598            static_cast<RealType>(1.27887601021900963655e0),2599            static_cast<RealType>(1.80329928265996817279e1),2600            static_cast<RealType>(2.35783605878556791719e1),2601            static_cast<RealType>(-2.67160590411398800149e1),2602            static_cast<RealType>(-2.36192101013335692266e1),2603            static_cast<RealType>(8.30396110938939237358e0),2604        };2605        BOOST_MATH_STATIC const RealType Q[6] = {2606            static_cast<RealType>(1),2607            static_cast<RealType>(5.37459525158081633669e0),2608            static_cast<RealType>(2.35696607501498012129e0),2609            static_cast<RealType>(-1.71117034150268575909e1),2610            static_cast<RealType>(-6.72278235529877170403e0),2611            static_cast<RealType>(1.27763043804603299034e1),2612        };2613 2614        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2615    }2616    else if (p >= 0.125) {2617        RealType t = p - static_cast < RealType>(0.125);2618 2619        // Rational Approximation2620        // Maximum Absolute Error: 6.3254e-172621        BOOST_MATH_STATIC const RealType P[8] = {2622            static_cast<RealType>(-8.77109518013577785811e-1),2623            static_cast<RealType>(-1.03442936529923615496e1),2624            static_cast<RealType>(-1.03389868296950570121e1),2625            static_cast<RealType>(2.01575691867458616553e2),2626            static_cast<RealType>(4.59115079925618829199e2),2627            static_cast<RealType>(-3.38676271744958577802e2),2628            static_cast<RealType>(-5.38213647878547918506e2),2629            static_cast<RealType>(1.99214574934960143349e2),2630        };2631        BOOST_MATH_STATIC const RealType Q[7] = {2632            static_cast<RealType>(1),2633            static_cast<RealType>(1.64177607733998839003e1),2634            static_cast<RealType>(8.10042194014991761178e1),2635            static_cast<RealType>(7.61952772645589839171e1),2636            static_cast<RealType>(-2.52698871224510918595e2),2637            static_cast<RealType>(-1.95365983250723202416e2),2638            static_cast<RealType>(2.61928845964255538379e2),2639        };2640 2641        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2642    }2643    else if (ilogb(p) >= -4) {2644        RealType t = -log2(ldexp(p, 3));2645 2646        // Rational Approximation2647        // Maximum Relative Error: 3.5192e-182648        BOOST_MATH_STATIC const RealType P[6] = {2649            static_cast<RealType>(-8.77109518013577852585e-1),2650            static_cast<RealType>(-1.08703720146608358678e0),2651            static_cast<RealType>(-4.34198537684719253325e-1),2652            static_cast<RealType>(-6.97264194535092564620e-2),2653            static_cast<RealType>(-4.20721933993302797971e-3),2654            static_cast<RealType>(-6.27420063107527426396e-5),2655        };2656        BOOST_MATH_STATIC const RealType Q[6] = {2657            static_cast<RealType>(1),2658            static_cast<RealType>(8.38688797993971740640e-1),2659            static_cast<RealType>(2.47558526682310722526e-1),2660            static_cast<RealType>(3.03952783355954712472e-2),2661            static_cast<RealType>(1.39226078796010665644e-3),2662            static_cast<RealType>(1.43993679246435688244e-5),2663        };2664 2665        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2666    }2667    else if (ilogb(p) >= -8) {2668        RealType t = -log2(ldexp(p, 4));2669 2670        // Rational Approximation2671        // Maximum Relative Error: 1.1196e-172672        BOOST_MATH_STATIC const RealType P[8] = {2673            static_cast<RealType>(-1.16727296241754548410e0),2674            static_cast<RealType>(-1.12325365855062172009e0),2675            static_cast<RealType>(-3.96403456954867129566e-1),2676            static_cast<RealType>(-6.50024588048629862189e-2),2677            static_cast<RealType>(-5.08582387678609504048e-3),2678            static_cast<RealType>(-1.71657051345258316598e-4),2679            static_cast<RealType>(-1.81536405273085024830e-6),2680            static_cast<RealType>(-9.65262938333207656548e-10),2681        };2682        BOOST_MATH_STATIC const RealType Q[7] = {2683            static_cast<RealType>(1),2684            static_cast<RealType>(7.55271574611337871389e-1),2685            static_cast<RealType>(2.16323131117540100488e-1),2686            static_cast<RealType>(2.92693206540519768049e-2),2687            static_cast<RealType>(1.89396907936678571916e-3),2688            static_cast<RealType>(5.20017914327360594265e-5),2689            static_cast<RealType>(4.18896774212993675707e-7),2690        };2691 2692        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2693    }2694    else if (ilogb(p) >= -16) {2695        RealType t = -log2(ldexp(p, 8));2696 2697        // Rational Approximation2698        // Maximum Relative Error: 1.0763e-172699        BOOST_MATH_STATIC const RealType P[8] = {2700            static_cast<RealType>(-1.78348038398799868409e0),2701            static_cast<RealType>(-7.74779087785346936524e-1),2702            static_cast<RealType>(-1.27121601027522656374e-1),2703            static_cast<RealType>(-9.86675785835385622362e-3),2704            static_cast<RealType>(-3.69510132425310943600e-4),2705            static_cast<RealType>(-6.00811940375633438805e-6),2706            static_cast<RealType>(-3.06397799506512676163e-8),2707            static_cast<RealType>(-7.34821360521886161256e-12),2708        };2709        BOOST_MATH_STATIC const RealType Q[7] = {2710            static_cast<RealType>(1),2711            static_cast<RealType>(3.76606062137668223823e-1),2712            static_cast<RealType>(5.37821995022686641494e-2),2713            static_cast<RealType>(3.62736078766811383733e-3),2714            static_cast<RealType>(1.16954398984720362997e-4),2715            static_cast<RealType>(1.59917906784160311385e-6),2716            static_cast<RealType>(6.41144889614705503307e-9),2717        };2718 2719        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2720    }2721    else if (ilogb(p) >= -32) {2722        RealType t = -log2(ldexp(p, 16));2723 2724        // Rational Approximation2725        // Maximum Relative Error: 9.9936e-182726        BOOST_MATH_STATIC const RealType P[8] = {2727            static_cast<RealType>(-2.32474749499506229415e0),2728            static_cast<RealType>(-4.81681429397597263092e-1),2729            static_cast<RealType>(-3.79696253130015182335e-2),2730            static_cast<RealType>(-1.42328672650093755545e-3),2731            static_cast<RealType>(-2.58335052925986849305e-5),2732            static_cast<RealType>(-2.03945574260603170161e-7),2733            static_cast<RealType>(-5.04229972664978604816e-10),2734            static_cast<RealType>(-5.49506755992282162712e-14),2735        };2736        BOOST_MATH_STATIC const RealType Q[7] = {2737            static_cast<RealType>(1),2738            static_cast<RealType>(1.87186049570056737301e-1),2739            static_cast<RealType>(1.32852903862611979806e-2),2740            static_cast<RealType>(4.45262195863310928309e-4),2741            static_cast<RealType>(7.13306978839226580931e-6),2742            static_cast<RealType>(4.84555343060572391776e-8),2743            static_cast<RealType>(9.65086092007764297450e-11),2744        };2745 2746        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2747    }2748    else if (ilogb(p) >= -64) {2749        RealType t = -log2(ldexp(p, 32));2750 2751        // Rational Approximation2752        // Maximum Relative Error: 9.2449e-182753        BOOST_MATH_STATIC const RealType P[8] = {2754            static_cast<RealType>(-2.82318656228158372998e0),2755            static_cast<RealType>(-2.84346379198027589453e-1),2756            static_cast<RealType>(-1.09194719815749710073e-2),2757            static_cast<RealType>(-1.99728160102967185378e-4),2758            static_cast<RealType>(-1.77069359938827653381e-6),2759            static_cast<RealType>(-6.82828539186572955883e-9),2760            static_cast<RealType>(-8.22634582905944543176e-12),2761            static_cast<RealType>(-4.10585514777842307175e-16),2762        };2763        BOOST_MATH_STATIC const RealType Q[7] = {2764            static_cast<RealType>(1),2765            static_cast<RealType>(9.29910333991046040738e-2),2766            static_cast<RealType>(3.27860300729204691815e-3),2767            static_cast<RealType>(5.45852206475929614010e-5),2768            static_cast<RealType>(4.34395271645812189497e-7),2769            static_cast<RealType>(1.46600782366946777467e-9),2770            static_cast<RealType>(1.45083131237841500574e-12),2771        };2772 2773        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2774    }2775    else if (ilogb(p) >= -128) {2776        RealType t = -log2(ldexp(p, 64));2777 2778        // Rational Approximation2779        // Maximum Relative Error: 8.6453e-182780        BOOST_MATH_STATIC const RealType P[8] = {2781            static_cast<RealType>(-3.29700011190686231229e0),2782            static_cast<RealType>(-1.62920309130909343601e-1),2783            static_cast<RealType>(-3.07152472866757852259e-3),2784            static_cast<RealType>(-2.75922040607620211449e-5),2785            static_cast<RealType>(-1.20144242264703283024e-7),2786            static_cast<RealType>(-2.27410079849018964454e-10),2787            static_cast<RealType>(-1.34109445298156050256e-13),2788            static_cast<RealType>(-3.08843378675512185582e-18),2789        };2790        BOOST_MATH_STATIC const RealType Q[7] = {2791            static_cast<RealType>(1),2792            static_cast<RealType>(4.62324092774919223927e-2),2793            static_cast<RealType>(8.10410923007867515072e-4),2794            static_cast<RealType>(6.70843016241177926470e-6),2795            static_cast<RealType>(2.65459014339231700938e-8),2796            static_cast<RealType>(4.45531791525831169724e-11),2797            static_cast<RealType>(2.19324401673412172456e-14),2798        };2799 2800        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2801    }2802    else if (ilogb(p) >= -256) {2803        RealType t = -log2(ldexp(p, 128));2804 2805        // Rational Approximation2806        // Maximum Relative Error: 8.2028e-182807        BOOST_MATH_STATIC const RealType P[8] = {2808            static_cast<RealType>(-3.75666995985336008568e0),2809            static_cast<RealType>(-9.15751436135409108392e-2),2810            static_cast<RealType>(-8.51745858385908954959e-4),2811            static_cast<RealType>(-3.77453552696508401182e-6),2812            static_cast<RealType>(-8.10504146884381804474e-9),2813            static_cast<RealType>(-7.55871397276946580837e-12),2814            static_cast<RealType>(-2.19023097542770265117e-15),2815            static_cast<RealType>(-2.34270094396556916060e-20),2816        };2817        BOOST_MATH_STATIC const RealType Q[7] = {2818            static_cast<RealType>(1),2819            static_cast<RealType>(2.30119177073875808729e-2),2820            static_cast<RealType>(2.00787377759037971795e-4),2821            static_cast<RealType>(8.27382543511838001513e-7),2822            static_cast<RealType>(1.62997898759733931959e-9),2823            static_cast<RealType>(1.36215810410261098317e-12),2824            static_cast<RealType>(3.33957268115953023683e-16),2825        };2826 2827        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2828    }2829    else if (ilogb(p) >= -512) {2830        RealType t = -log2(ldexp(p, 256));2831 2832        // Rational Approximation2833        // Maximum Relative Error: 7.8900e-182834        BOOST_MATH_STATIC const RealType P[8] = {2835            static_cast<RealType>(-4.20826069989721597050e0),2836            static_cast<RealType>(-5.07864788729928381957e-2),2837            static_cast<RealType>(-2.33825872475869133650e-4),2838            static_cast<RealType>(-5.12795917403072758309e-7),2839            static_cast<RealType>(-5.44657955194364350768e-10),2840            static_cast<RealType>(-2.51001805474510910538e-13),2841            static_cast<RealType>(-3.58448226638949307172e-17),2842            static_cast<RealType>(-1.79092368272097571876e-22),2843        };2844        BOOST_MATH_STATIC const RealType Q[7] = {2845            static_cast<RealType>(1),2846            static_cast<RealType>(1.14671758705641048135e-2),2847            static_cast<RealType>(4.98614103841229871806e-5),2848            static_cast<RealType>(1.02397186002860292625e-7),2849            static_cast<RealType>(1.00544286633906421384e-10),2850            static_cast<RealType>(4.18843275058038084849e-14),2851            static_cast<RealType>(5.11960642868907665857e-18),2852        };2853 2854        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2855    }2856    else if (ilogb(p) >= -1024) {2857        RealType t = -log2(ldexp(p, 512));2858 2859        // Rational Approximation2860        // Maximum Relative Error: 7.6777e-182861        BOOST_MATH_STATIC const RealType P[8] = {2862            static_cast<RealType>(-4.65527239540648658214e0),2863            static_cast<RealType>(-2.78834161568280967534e-2),2864            static_cast<RealType>(-6.37014695368461940922e-5),2865            static_cast<RealType>(-6.92971221299243529202e-8),2866            static_cast<RealType>(-3.64900562915285147191e-11),2867            static_cast<RealType>(-8.32868843440595945586e-15),2868            static_cast<RealType>(-5.87602374631705229119e-19),2869            static_cast<RealType>(-1.37812578498484605190e-24),2870        };2871        BOOST_MATH_STATIC const RealType Q[7] = {2872            static_cast<RealType>(1),2873            static_cast<RealType>(5.72000087046224585566e-3),2874            static_cast<RealType>(1.24068329655043560901e-5),2875            static_cast<RealType>(1.27105410419102416943e-8),2876            static_cast<RealType>(6.22649556008196699310e-12),2877            static_cast<RealType>(1.29416254332222127404e-15),2878            static_cast<RealType>(7.89365027125866583275e-20),2879        };2880 2881        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2882    }2883    else{2884        result = -boost::math::numeric_limits<RealType>::infinity();2885    }2886 2887    return result;2888}2889 2890 2891template <class RealType>2892BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_lower_imp_prec(const RealType& p, const boost::math::integral_constant<int, 113>&)2893{2894    BOOST_MATH_STD_USING2895    RealType result;2896 2897    if (p >= 0.375) {2898        RealType t = p - 0.375;2899 2900        // Rational Approximation2901        // Maximum Absolute Error: 2.5723e-352902        // LCOV_EXCL_START2903        BOOST_MATH_STATIC const RealType P[13] = {2904            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.74557416577759248536854968412794870581e-2),2905            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.04379368253541440583870397314012269006e0),2906            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.12622841210720956864564105821904588447e1),2907            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.57744422491408570970393103737579322242e0),2908            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.13509711945094517370264490591904074504e2),2909            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.18322789179144512109337184576079775889e2),2910            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21447613719864832622177316196592738866e2),2911            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.49076304733407444404640803736504398642e2),2912            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.96654951892056950374719952752959986017e2),2913            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.73083458872938872583408218098970368331e2),2914            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.22584946471889320670122404162385347867e1),2915            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98534922151507267157370682137856253991e1),2916            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.09159286510191893522643172277831735606e0),2917        };2918        BOOST_MATH_STATIC const RealType Q[12] = {2919            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2920            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.86204686129323171601167115178777357431e0),2921            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.43698274248278918649234376575855135232e0),2922            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.75240332521434608696943994815649748669e1),2923            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.31438891446345558658756610288653829009e1),2924            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.10716029191240549289948990305434475528e2),2925            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.10878330779477313404660683539265890549e1),2926            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.52360069933886703736010179403700697679e2),2927            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.15864312939821257811853678185928982258e1),2928            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.10341116017481903631605786613604619909e1),2929            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.29121822170912306719250697890270750964e1),2930            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.56489746112937744052098794310386515793e1),2931        };2932        // LCOV_EXCL_STOP2933        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2934    }2935    else if (p >= 0.25) {2936        RealType t = p - 0.25;2937 2938        // Rational Approximation2939        // Maximum Absolute Error: 6.1583e-352940        // LCOV_EXCL_START2941        BOOST_MATH_STATIC const RealType P[13] = {2942            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.17764764050720242897742634974454113395e-1),2943            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.80044093802431965072543552425830082205e0),2944            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.23613318632011593171919848575560968064e1),2945            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.77438013844838858458786448973516177604e2),2946            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.62569530523012138862025718052954558264e2),2947            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.02005706260864894793795986187582916504e2),2948            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.29383609355165614630538852833671831839e3),2949            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.09367754001841471839736367284852087164e2),2950            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45744413840415901080013900562654222567e3),2951            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.41920296534143581978760545125050148256e2),2952            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.94857580745127596732818606388347624241e2),2953            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.02847586753967876900858299686189155164e2),2954            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.29953583375818707785500963989580066735e1),2955        };2956        BOOST_MATH_STATIC const RealType Q[13] = {2957            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2958            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27455303165341271216882778791555788609e1),2959            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.41762124591820618604790027888328605963e1),2960            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.30845760165840203715852751405553821601e1),2961            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.00827370048057599908445731563638383351e2),2962            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.19621193929561206904250173267823637982e2),2963            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.10514757798726932158537558200005910184e2),2964            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.79738493761540403010052092523396617472e2),2965            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.94101664430520833603032182296078344870e1),2966            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.31586575577250608890806988616823861649e2),2967            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.93650751613703379272667745729529916084e1),2968            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.52472388998113562780767055981852228229e1),2969            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.01428305018551686265238906201345171425e0),2970        };2971        // LCOV_EXCL_STOP2972        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);2973    }2974    else if (p >= 0.125) {2975        RealType t = p - 0.125;2976 2977        // Rational Approximation2978        // Maximum Absolute Error: 1.3135e-352979        // LCOV_EXCL_START2980        BOOST_MATH_STATIC const RealType P[15] = {2981            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.77109518013577849065583862782160121458e-1),2982            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.05813204052660740589813216397258899528e1),2983            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.19628607167020425528944673039894592264e2),2984            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.67162644860799051148361885190022738759e3),2985            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.05921446080443979618622123764941760355e3),2986            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.26685085062411656483492973256809500654e4),2987            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.17117538916032273474332064444853786788e5),2988            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.45059470468014721314631799845029715639e5),2989            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.28952226224720891553119529857430570919e4),2990            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.98502296814963504284919407719496390478e5),2991            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.10876326351879104392865586365509749012e5),2992            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.70358021544406445036220918341411271912e5),2993            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.49724346845064961378591039928633169443e5),2994            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.23815021378788622035604969476085727123e5),2995            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.17262073948257994617723369387261569086e4),2996        };2997        BOOST_MATH_STATIC const RealType Q[15] = {2998            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),2999            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.94901665980514882602824575757494472790e1),3000            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.54328910175180674300123471690771017388e2),3001            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.84847502738788846487698327848593567941e3),3002            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98451502799612368808473649408471338893e4),3003            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.13744760159877712051088928513298431905e4),3004            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.20745061658519699732567732006176366700e4),3005            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.68622317228909264645937229979147883985e5),3006            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.96020751551679746882793283955926871655e5),3007            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.88860541272346724142574740580038834720e3),3008            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.73454107207588310809238143625482857512e5),3009            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.23165643368613191971938741926948857263e4),3010            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.94832163019509140191456686231012184524e5),3011            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.26616234097287315007047356261933409072e3),3012            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24686019847093806280148917466062407447e4),3013        };3014        // LCOV_EXCL_STOP3015        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3016    }3017    else if (ilogb(p) >= -4) {3018        RealType t = -log2(ldexp(p, 3));3019 3020        // Rational Approximation3021        // Maximum Relative Error: 2.0498e-353022        // LCOV_EXCL_START3023        BOOST_MATH_STATIC const RealType P[11] = {3024            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.77109518013577849065583862782160155093e-1),3025            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.77585398076895266354686007069850894777e0),3026            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.47522378123968853907102309276280187353e0),3027            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.63343576432650242131602396758195296288e-1),3028            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.77801189859227220359806456829683498508e-1),3029            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.93221663334563259732178473649683953515e-2),3030            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.95272757466323942599253855146019408376e-3),3031            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.73624853556509653351605530630788087166e-4),3032            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.41317699770351712612969089634227647374e-6),3033            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.34187895701093934279414993393750297714e-8),3034            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.64090928155753225614302094820737249510e-10),3035        };3036        BOOST_MATH_STATIC const RealType Q[11] = {3037            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3038            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.62401464973350962823995096121206419019e0),3039            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11979822811128264831341485706314465894e0),3040            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.27257342406829987209876262928379300361e-1),3041            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.85505879705365729768944032174855501091e-2),3042            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.40983451000610516082352700421098499905e-2),3043            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.23459897865681009685618192649929504121e-3),3044            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.28925214684463186484928824536992032740e-5),3045            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67647262682850294124662856194944728023e-6),3046            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.88173142080572819772032615169461689904e-8),3047            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.07756799117728455728056041053803769069e-11),3048        };3049        // LCOV_EXCL_STOP3050        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3051    }3052    else if (ilogb(p) >= -8) {3053        RealType t = -log2(ldexp(p, 4));3054 3055        // Rational Approximation3056        // Maximum Relative Error: 6.7643e-353057        // LCOV_EXCL_START3058        BOOST_MATH_STATIC const RealType P[14] = {3059            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.16727296241754547290632950718657117630e0),3060            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.97822895738734630842909028778257589627e0),3061            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.45580723831325060656664869189975355503e0),3062            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.13835678647158936819843386298690513648e-1),3063            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.64536831064884519168892017327822018961e-1),3064            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.93786616484143556451247457584976578832e-2),3065            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.55770899078184683328915310751857391073e-3),3066            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.91778173446401005072425460365992356304e-4),3067            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.59064619930808759325013814591048817325e-5),3068            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.54786673836080683521554567617693797315e-7),3069            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.15917340396537949894051711038346411232e-8),3070            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.29633344043292285568750868731529586549e-10),3071            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.27785620133198676852587951604694784533e-13),3072            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.89999814745618370028655821500875451178e-16),3073        };3074        BOOST_MATH_STATIC const RealType Q[14] = {3075            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3076            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48772690114094395052120751771215809418e0),3077            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.72281013057830222881716429522080327421e-1),3078            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.67186370229687087768391373818683340542e-1),3079            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.86988148601521223503040043124617333773e-2),3080            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.43321724586909919175166704060749343677e-2),3081            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.57428821868404424742036582321713763151e-3),3082            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17165774858274087452172407067668213010e-4),3083            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.78674439389954997342198692571336875222e-6),3084            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.82045374895858670592647375231115294575e-7),3085            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.40152058277291349447734231472872126483e-9),3086            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.34789603687129472952627586273206671442e-11),3087            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.38087376350052845654180435966624948994e-13),3088            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34945081364333330292720602508979680233e-16),3089        };3090        // LCOV_EXCL_STOP3091        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3092    }3093    else if (ilogb(p) >= -16) {3094        RealType t = -log2(ldexp(p, 8));3095 3096        // Rational Approximation3097        // Maximum Relative Error: 6.4987e-353098        // LCOV_EXCL_START3099        BOOST_MATH_STATIC const RealType P[14] = {3100            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.78348038398799867332294266481364810762e0),3101            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.42913983922316889357725662957488617770e0),3102            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.02077376277824482097703213549730657663e-1),3103            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.01799479940825547859103232846394236067e-1),3104            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.31954083060883245879038709103320778401e-2),3105            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.14437110578260816704498035546280169833e-3),3106            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.75434713435598124790021625988306358726e-5),3107            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.70722283097111675839403787383067403199e-6),3108            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.22792548204908895458622068271940298849e-8),3109            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.23652632092726261134927067083229843867e-9),3110            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.26848751206698811476021875382152874517e-11),3111            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.96683933776920842966962054618493551480e-14),3112            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.65547426464916480144982028081303670013e-16),3113            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.01788104318587272115031165074724363239e-19),3114        };3115        BOOST_MATH_STATIC const RealType Q[14] = {3116            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3117            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.43507070588695242714872431565299762416e-1),3118            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.42808541175677232789532731946043918868e-1),3119            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.58154336417481327293949514291626832622e-2),3120            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.52883128062761272825364005132296437324e-3),3121            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.46220303655089035098911370014929809787e-4),3122            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.44776253795594076489612438705019750179e-5),3123            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.09607872267766585503592561222987444825e-7),3124            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.24270418154050297788150584301311027023e-8),3125            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.52138350835458198482199500102799185922e-10),3126            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.28330565098807415367837423320898722351e-12),3127            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.61220858078610415609826514581165467762e-14),3128            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.31680570822471881148008283775281806658e-17),3129            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.61638868324981393463928986484698110415e-20),3130        };3131        // LCOV_EXCL_STOP3132        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3133    }3134    else if (ilogb(p) >= -32) {3135        RealType t = -log2(ldexp(p, 16));3136 3137        // Rational Approximation3138        // Maximum Relative Error: 6.4643e-353139        // LCOV_EXCL_START3140        BOOST_MATH_STATIC const RealType P[14] = {3141            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.32474749499506228416012679106564727824e0),3142            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.11125026189437033131539969177846635890e-1),3143            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.56906722402983201196890012041528422765e-1),3144            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.56242546565817333757522889497509484980e-2),3145            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.96189353402888611791301502740835972176e-4),3146            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.25518459970705638772495930203869523701e-5),3147            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.23831474024265607073689937590604367113e-6),3148            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.44925744847701733694636991148083680863e-8),3149            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.22891322042392818013643347840386719351e-10),3150            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.72860750698838897533843164259437533533e-12),3151            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.38276123679972197567738586890856461530e-14),3152            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.75010927807240165715236750369730131837e-17),3153            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.39435252454410259267870094713230289131e-20),3154            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.32672767938414655620839066142834241506e-23),3155        };3156        BOOST_MATH_STATIC const RealType Q[14] = {3157            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3158            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.71913035066927544877255131988977106466e-1),3159            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.07499674325721771035402891723823952963e-2),3160            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.73304002376509252638426379643927595435e-3),3161            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.45986195188119302051678426047947808068e-4),3162            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.39631771214004792103186529415117786213e-5),3163            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.82972151546053891838685817022915476363e-7),3164            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.11484161875982352879422494936862579004e-9),3165            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.76886416872139526041488219568768973343e-11),3166            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.88160764330501845206576873052377420740e-13),3167            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.20653899535657202009579871085255085820e-15),3168            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.86752135706343102514753706859178940399e-18),3169            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.08670633989984379551412930443791478495e-21),3170            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.96869107941293302786688580824755244599e-24),3171        };3172        // LCOV_EXCL_STOP3173        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3174    }3175    else if (ilogb(p) >= -64) {3176        RealType t = -log2(ldexp(p, 32));3177 3178        // Rational Approximation3179        // Maximum Relative Error: 6.2783e-353180        // LCOV_EXCL_START3181        BOOST_MATH_STATIC const RealType P[14] = {3182            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.82318656228158372073367735499501003484e0),3183            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.46261040951642110189344545942990712460e-1),3184            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.64741560190892266676648641695426188913e-2),3185            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.28753551974093682831398870653055328683e-3),3186            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.21312013770915263838500863217194379134e-5),3187            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.52436958859473873340733176333088176566e-6),3188            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.19550238139736009251193868269757013675e-8),3189            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.14964971787780037500173882363122301527e-10),3190            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.40304301938210548254468386306034204388e-12),3191            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.86982233973109416660769999752508002999e-15),3192            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.47229710624085810190563630948355644978e-17),3193            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.97511060097659395674010001155696382091e-20),3194            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.14321784268659603072523892366718901165e-23),3195            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.69804409248161357472540739283978368871e-27),3196        };3197        BOOST_MATH_STATIC const RealType Q[14] = {3198            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3199            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85763741109198600677877934140774914793e-1),3200            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.51555423561034635648725665049090572375e-2),3201            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.14334282485948451530639961260946534734e-4),3202            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.15303265564789411158928907568898290494e-5),3203            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.33945229806307308687045028827126348382e-7),3204            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.94373901322371782367428404051188999662e-9),3205            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.51420073260465851038482922686870398511e-11),3206            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.39366317896256472225488167609473929757e-13),3207            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.32986474655329330922243678847674164814e-15),3208            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.09408217872473269288530036223761068322e-18),3209            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.79051953285476930547217173280519421410e-21),3210            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.94530899348454778842122895096072361105e-24),3211            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.36452993460830805591166007621343447892e-28),3212        };3213        // LCOV_EXCL_STOP3214        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3215    }3216    else if (ilogb(p) >= -128) {3217        RealType t = -log2(ldexp(p, 64));3218 3219        // Rational Approximation3220        // Maximum Relative Error: 6.0123e-353221        // LCOV_EXCL_START3222        BOOST_MATH_STATIC const RealType P[14] = {3223            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.29700011190686230364493911161520668302e0),3224            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.16175031776740080906111179721128106011e-1),3225            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.33343982195432985864570319341790342784e-2),3226            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.25414682801788504282484273374052405406e-4),3227            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.08812659343240279665150323243172015853e-6),3228            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.33251452861660571881208437468957953698e-8),3229            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.80894766863868081020089830941243893253e-10),3230            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.84955155823472122347227298177346716657e-12),3231            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.98637322645260158088125181176106901234e-15),3232            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.24174383760514163336627039277792172744e-17),3233            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.54369979866464292009398761404242103210e-20),3234            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.02572051048819721089874338860693952304e-23),3235            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.93656169061287808919601714139458074543e-27),3236            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.14930159772574816086864316805656403181e-31),3237        };3238        BOOST_MATH_STATIC const RealType Q[14] = {3239            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3240            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.27154900915819978649344191118112870943e-2),3241            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.77527908332591966425460814882436207182e-3),3242            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.88097249712649070373643439940164263005e-5),3243            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.33593973311650359460519742789132084170e-6),3244            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34383186845963127931313004467487408932e-8),3245            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.18631088001587612168708294926967112654e-11),3246            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.25338215226314856456799568077385137286e-13),3247            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30644713290591280849926388043887647219e-15),3248            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.55508263112797212356530850090635211577e-18),3249            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.96694528841324480583957017533192805939e-21),3250            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.81411886190142822899424539396403206677e-24),3251            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.64683991040772975824276994623053932566e-28),3252            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.81924597500766743545654858597960153152e-32),3253        };3254        // LCOV_EXCL_STOP3255        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3256    }3257    else if (ilogb(p) >= -256) {3258        RealType t = -log2(ldexp(p, 128));3259 3260        // Rational Approximation3261        // Maximum Relative Error: 5.7624e-353262        // LCOV_EXCL_START3263        BOOST_MATH_STATIC const RealType P[14] = {3264            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.75666995985336007747791649448887723610e0),3265            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.78960399079208663111712385988217075907e-1),3266            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.74942252057371678208959612011771010491e-3),3267            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.54567765510065203543937772001248399869e-5),3268            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.53093894540157655856029322335609764674e-7),3269            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.83833601054721321664219768559444646069e-9),3270            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.52281007055180941965172296953524749452e-12),3271            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.57322728543196345563534040700366511864e-14),3272            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.52881564741260266060082523971278782893e-17),3273            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.60440334652864372786302383583725866608e-20),3274            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.60691285483339296337794569661545125426e-23),3275            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.29567560587442907936295101146377006338e-27),3276            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.50976593324256906782731237116487284834e-31),3277            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.71308835356954147218854223581309967814e-35),3278        };3279        BOOST_MATH_STATIC const RealType Q[14] = {3280            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3281            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.62732785401286024270119905692156750540e-2),3282            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.40382961238668912455720345718267045656e-4),3283            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.10406445824749289380797744206585266357e-5),3284            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.28896702052362503156922190248503561966e-8),3285            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.16141168910009886089186579048301366151e-10),3286            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.41978644147717141591105056152782456952e-12),3287            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.28101353275172857831967521183323237520e-15),3288            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.02996252940600644617348281599332256544e-18),3289            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.91006255647885778937252519693385130907e-21),3290            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.84585864559619959844425689120130028450e-24),3291            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.68573963627097356380969264657086640713e-28),3292            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11059307697054035905630311480256015939e-31),3293            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.36363494270701950295678466437393953964e-36),3294        };3295        // LCOV_EXCL_STOP3296        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3297    }3298    else if (ilogb(p) >= -512) {3299        RealType t = -log2(ldexp(p, 256));3300 3301        // Rational Approximation3302        // Maximum Relative Error: 5.5621e-353303        // LCOV_EXCL_START3304        BOOST_MATH_STATIC const RealType P[14] = {3305            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.20826069989721596260510558511263035942e0),3306            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.97440158261228371765435988840257904642e-2),3307            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.03971528248920108158059927256206438162e-3),3308            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.27123766722395421727031536104546382045e-6),3309            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.42341191105097202061646583288627536471e-8),3310            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.27644514375284202188806395834379509517e-11),3311            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.10772944192965679212172315655880689287e-13),3312            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.32875098791800400229370712119075696952e-16),3313            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.06204614360238210805757647764525929969e-19),3314            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.43745006810807466452260414216858795476e-23),3315            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.66712970893511330059273629445122037896e-26),3316            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.72840198778128683137250377883245540424e-30),3317            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.91906782399731224228792112460580813901e-34),3318            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.42769091263044979075875010403899574987e-39),3319        };3320        BOOST_MATH_STATIC const RealType Q[14] = {3321            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3322            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.31008507886426704374911618340654350029e-2),3323            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.34370110384866123378972324145883460422e-4),3324            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.37370811166006065198348108499624387519e-6),3325            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.14880753458828334658200185014547794333e-9),3326            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.29049942195929206183214601044522500821e-11),3327            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.19814793427532184357255406261941946071e-14),3328            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.53609759199568827596069048758012402352e-17),3329            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.94113467521833827559558236675876398395e-20),3330            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.46066673213431758610437384053309779874e-24),3331            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.73781952388557106045597803110890418919e-27),3332            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.17225106466605017267996611448679124342e-31),3333            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.66384334839761400228111118435077786644e-35),3334            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.02877806111195383689496741738320318348e-40),3335        };3336        // LCOV_EXCL_STOP3337        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3338    }3339    else if (ilogb(p) >= -1024) {3340        RealType t = -log2(ldexp(p, 512));3341 3342        // Rational Approximation3343        // Maximum Relative Error: 5.4128e-353344        // LCOV_EXCL_START3345        BOOST_MATH_STATIC const RealType P[14] = {3346            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.65527239540648657446629479052874029563e0),3347            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.49609214609793557370425343404734771058e-2),3348            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.85355312961840000203681352424632999367e-4),3349            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.57243631623079865238801420669247289633e-7),3350            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.64978384343879316016184643597712973486e-9),3351            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.12776782513387823319217102727637716531e-12),3352            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.86985041780323969283076332449881856202e-15),3353            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.11665149267826038417038582618446201377e-18),3354            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.44259259232002496618805591961855219612e-22),3355            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.13186466395317710362065595347401054176e-25),3356            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.72627240737786709568584848420972570566e-29),3357            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.40450635670659803069555960816203368299e-33),3358            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.90550919589933206991152832258558972394e-38),3359            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.33785768143117121220383154455316199086e-43),3360        };3361        BOOST_MATH_STATIC const RealType Q[14] = {3362            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3363            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.15365252334339030944695314405853064901e-2),3364            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.84519641047962864523571386561993045416e-5),3365            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.71097850431873211384168229175171958023e-7),3366            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.20268329795802836663630276028274915013e-10),3367            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.00891848515558877833795613956071967566e-13),3368            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.41031229424613259381704686657785733606e-16),3369            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.96506914235910190020798805190634423572e-19),3370            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.51190756655665636680121123277286815188e-23),3371            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.82855686000721415124702578998188630945e-26),3372            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.64298533757673219241102013167519737553e-30),3373            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.01176104624443909516274664414542493718e-34),3374            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.41571947895162847564926590304679876888e-39),3375            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.84682590163505511580949151048092123923e-44),3376        };3377        // LCOV_EXCL_STOP3378        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3379    }3380    else if (ilogb(p) >= -2048) {3381        RealType t = -log2(ldexp(p, 1024));3382 3383        // Rational Approximation3384        // Maximum Relative Error: 5.3064e-353385        // LCOV_EXCL_START3386        BOOST_MATH_STATIC const RealType P[14] = {3387            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.09971143249822249471944441552701756051e0),3388            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.00154235169065403254826962372636417554e-2),3389            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.76859552294270710004718457715250134998e-5),3390            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.16331901379268792872208226779641113312e-7),3391            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.11590258438815173520561213981966313758e-10),3392            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.17278804462968109983985217400233347654e-14),3393            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.14112976645884560534267524918610371127e-17),3394            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.34652102658577790471066054415469309178e-21),3395            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.85242987373551062800089607781071064493e-24),3396            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.35051904844102317261572436130886083833e-28),3397            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.78478298776769981726834169566536801689e-32),3398            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.22532973433435489030532261530565473605e-37),3399            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.25433604872532935232490414753194993235e-41),3400            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.49792182967344082832448065912949074241e-47),3401        };3402        BOOST_MATH_STATIC const RealType Q[14] = {3403            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3404            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.76316274347013095030195725596822418859e-3),3405            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45872499993438633169552184478587544165e-5),3406            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.13309566903496793786045158442686362533e-8),3407            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.99468690853840997883815075627545315449e-11),3408            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24734617022827960185483615293575601906e-14),3409            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.30099852343633243897084627428924039959e-18),3410            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.52598626985708878790452436052924637029e-21),3411            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91432956461466900007096548587800675801e-25),3412            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.54421383015859327468201269268335476713e-29),3413            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.55939743284103455997584863292829252782e-33),3414            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.73331214275752923691778067125447148395e-38),3415            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.55089353084326800338273098565932598679e-42),3416            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.85408276119483460035366338145310798737e-48),3417        };3418        // LCOV_EXCL_STOP3419        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3420    }3421    else if (ilogb(p) >= -4096) {3422        RealType t = -log2(ldexp(p, 2048));3423 3424        // Rational Approximation3425        // Maximum Relative Error: 5.2337e-353426        // LCOV_EXCL_START3427        BOOST_MATH_STATIC const RealType P[14] = {3428            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.54271778755494231572464179212263718102e0),3429            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.62737121212473668543011440432166267791e-2),3430            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.10099492629239750693134803100262740506e-5),3431            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.56925359477960645026399648793960646858e-8),3432            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.50756287005636861300081510456668184335e-12),3433            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.40657453971177017986596834420774251809e-15),3434            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.25518001919157628924245515302669097090e-19),3435            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.79618511101781942757791021761865762100e-23),3436            BOOST_MATH_BIG_CONSTANT(RealType, 113, -7.70242241511341924787722778791482800736e-27),3437            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.87078860748428154402226644449936091766e-31),3438            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.84256560347986567120140826597805016470e-35),3439            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.71419536977123330712095123316879755172e-40),3440            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.20746149769511232987820552765701234564e-45),3441            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.97544543671003989410397788518265345930e-51),3442        };3443        BOOST_MATH_STATIC const RealType Q[14] = {3444            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3445            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.87980995989632171985079518382705421728e-3),3446            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.64234691529227024725728122489224211774e-6),3447            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.66149363392892604040036997518509803848e-9),3448            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24365427902918684575287447585802611012e-12),3449            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.88619663977804926166359181945671853793e-16),3450            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.25299846770395565237726328268659386749e-20),3451            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18720305257346902130922082357712771134e-23),3452            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.13302092710568005396855019882472656722e-27),3453            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.88571994886818976015465466797965950164e-32),3454            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.48486836614948668196092864992423643733e-36),3455            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.72247229252387482782783442901266890088e-41),3456            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.76046592638280288324495546006105696670e-46),3457            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.09378739037162732758860377477607829024e-52),3458        };3459        // LCOV_EXCL_STOP3460        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3461    }3462    else if (ilogb(p) >= -8192) {3463        RealType t = -log2(ldexp(p, 4096));3464 3465        // Rational Approximation3466        // Maximum Relative Error: 5.1864e-353467        // LCOV_EXCL_START3468        BOOST_MATH_STATIC const RealType P[14] = {3469            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.98493298246627952401490656857159302716e0),3470            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.76990949843357898517869703626917264559e-3),3471            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.65042794324685841303461715489845834903e-6),3472            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.10605446678026983843303253925148000808e-9),3473            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.02762962429283889606329831562937730874e-13),3474            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.04105882385534634676234513866095562877e-17),3475            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.76001901462155366759952792570076976049e-21),3476            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.48255362964603267691139956218580946011e-25),3477            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.19422119466925125740484046268759113569e-29),3478            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.00719439924828639148906078835399693640e-33),3479            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.89921842231783558951433534621837291030e-38),3480            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.90738353848476619269054038082927243972e-43),3481            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.19893980415902021846066305054394089887e-49),3482            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.85434486590981105149494168639321627061e-55),3483        };3484        BOOST_MATH_STATIC const RealType Q[14] = {3485            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3486            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.43932168599456260558411716919165161381e-3),3487            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.09851997458503734167541584552305867433e-7),3488            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.32285843258966417340522520711168738158e-10),3489            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.76041266755635729156773747720864677283e-14),3490            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21202253509959946958614664659473305613e-17),3491            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.28647335562574024550800155417747339700e-21),3492            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.24953333571478743858014647649207040423e-26),3493            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.41206199962423704137133875822618501173e-30),3494            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.34018702380092542910629787632780530080e-34),3495            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.41732943566503750356718429150708698018e-39),3496            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29626943299239081309470153019011607254e-44),3497            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.13947437500822384369637881437951570653e-50),3498            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.61766557173110449434575883392084129710e-56),3499        };3500        // LCOV_EXCL_STOP3501        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3502    }3503    else if (ilogb(p) >= -16384) {3504        RealType t = -log2(ldexp(p, 8192));3505 3506        // Rational Approximation3507        // Maximum Relative Error: 5.1568e-353508        // LCOV_EXCL_START3509        BOOST_MATH_STATIC const RealType P[14] = {3510            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.42671464308364892089984144203590292562e0),3511            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.70165333325375920690660683988390032004e-3),3512            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.51230594210711745541592189387307516997e-6),3513            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.81387249912672866168782835177116953008e-10),3514            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.35308063526816559199325906123032162155e-14),3515            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.67672500455361049516022171111707553191e-18),3516            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.45533142942305626136621399056034449775e-22),3517            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.37422341389432268402917477004312957781e-27),3518            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.32123176403616347106899307416474970831e-31),3519            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.07816837508332884935917946618577512264e-36),3520            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.95418937882563343895280651308376855123e-41),3521            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.78256110112636303941842779721479313701e-47),3522            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.09423327107440352766843873264503717048e-52),3523            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.12386630925835960782702757402676887380e-58),3524        };3525        BOOST_MATH_STATIC const RealType Q[14] = {3526            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3527            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.19477412398085422408065302795208098500e-4),3528            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.27347517804649548179786994390985841531e-7),3529            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.15042399607786347684366638940822746311e-11),3530            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.84537882580411074097888848210083177973e-15),3531            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.78283331111405789359863743531858801963e-19),3532            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.00711555012725961640684514298170252743e-23),3533            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.21370151454170604715234671414141850094e-28),3534            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.72008007024350635082914256163415892454e-32),3535            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.61182095564217124712889821368695320635e-37),3536            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.35498047010165964231841033788823033461e-42),3537            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11828030216193307885831734256233140264e-47),3538            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22499308298315468568520585583666049073e-53),3539            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04877018522402283597555167651619229959e-59),3540        };3541        // LCOV_EXCL_STOP3542        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3543    }3544    else {3545        result = -boost::math::numeric_limits<RealType>::infinity();3546    }3547 3548    return result;3549}3550 3551template <class RealType>3552BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_upper_imp_prec(const RealType& p, const boost::math::integral_constant<int, 53>&)3553{3554    BOOST_MATH_STD_USING3555    RealType result;3556 3557    if (p >= 0.375) {3558        RealType t = p - static_cast < RealType>(0.375);3559 3560        // Rational Approximation3561        // Maximum Relative Error: 5.1286e-203562        BOOST_MATH_STATIC const RealType P[7] = {3563            static_cast<RealType>(1.31348919222343858178e0),3564            static_cast<RealType>(-1.06646675961352786791e0),3565            static_cast<RealType>(-1.80946160022120488884e1),3566            static_cast<RealType>(-1.53457017598330440033e0),3567            static_cast<RealType>(4.71260102173048370028e1),3568            static_cast<RealType>(4.61048467818771410732e0),3569            static_cast<RealType>(-2.80957284947853532418e1),3570        };3571        BOOST_MATH_STATIC const RealType Q[8] = {3572            static_cast<RealType>(1),3573            static_cast<RealType>(4.71007453129016317772e0),3574            static_cast<RealType>(1.31946404969596908872e0),3575            static_cast<RealType>(-1.70321827414586880227e1),3576            static_cast<RealType>(-1.11253495615474018666e1),3577            static_cast<RealType>(1.62659086449959446986e1),3578            static_cast<RealType>(7.37109203295032098763e0),3579            static_cast<RealType>(-2.43898047338699777337e0),3580        };3581 3582        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3583    }3584    else if (p >= 0.25) {3585        RealType t = p - static_cast < RealType>(0.25);3586 3587        // Rational Approximation3588        // Maximum Relative Error: 3.4934e-183589        BOOST_MATH_STATIC const RealType P[7] = {3590            static_cast<RealType>(2.55081568282045924981e0),3591            static_cast<RealType>(5.38750533719526696218e0),3592            static_cast<RealType>(-2.32797421725187349036e1),3593            static_cast<RealType>(-3.96043566411306749784e1),3594            static_cast<RealType>(3.80609941977115436545e1),3595            static_cast<RealType>(3.35014421131920266346e1),3596            static_cast<RealType>(-1.17490458743273503838e1),3597        };3598        BOOST_MATH_STATIC const RealType Q[7] = {3599            static_cast<RealType>(1),3600            static_cast<RealType>(7.52439409918350484765e0),3601            static_cast<RealType>(1.34784954182866689668e1),3602            static_cast<RealType>(-9.21002543625052363446e0),3603            static_cast<RealType>(-2.67378141317474265949e1),3604            static_cast<RealType>(2.10158795079902783094e0),3605            static_cast<RealType>(5.90098096212203282798e0),3606        };3607 3608        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3609    }3610    else if (p >= 0.125) {3611        RealType t = p - static_cast < RealType>(0.125);3612 3613        // Rational Approximation3614        // Maximum Relative Error: 4.0795e-173615        BOOST_MATH_STATIC const RealType P[8] = {3616            static_cast<RealType>(5.68160868054034111703e0),3617            static_cast<RealType>(1.06098927525586705381e2),3618            static_cast<RealType>(5.74509518025029027944e2),3619            static_cast<RealType>(4.91117375866809056969e2),3620            static_cast<RealType>(-2.92607000654635606895e3),3621            static_cast<RealType>(-3.82912009541683403499e3),3622            static_cast<RealType>(2.49195208452006100935e3),3623            static_cast<RealType>(1.29413301335116683836e3),3624        };3625        BOOST_MATH_STATIC const RealType Q[7] = {3626            static_cast<RealType>(1),3627            static_cast<RealType>(2.69603865809599480308e1),3628            static_cast<RealType>(2.63378422475372461819e2),3629            static_cast<RealType>(1.09903493506098212946e3),3630            static_cast<RealType>(1.60315072092792425370e3),3631            static_cast<RealType>(-5.44710468198458322870e2),3632            static_cast<RealType>(-1.76410218726878681387e3),3633        };3634 3635        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3636    }3637    else if (ilogb(p) >= -4) {3638        RealType t = -log2(ldexp(p, 3));3639 3640        // Rational Approximation3641        // Maximum Relative Error: 4.4618e-173642        BOOST_MATH_STATIC const RealType P[7] = {3643            static_cast<RealType>(7.10201085067542566037e-1),3644            static_cast<RealType>(6.70042401812679849451e-1),3645            static_cast<RealType>(2.42799404088685074098e-1),3646            static_cast<RealType>(4.80613880364042262227e-2),3647            static_cast<RealType>(6.04473313360581797461e-3),3648            static_cast<RealType>(5.09172911021654842046e-4),3649            static_cast<RealType>(-6.63145317984529265677e-6),3650        };3651        BOOST_MATH_STATIC const RealType Q[6] = {3652            static_cast<RealType>(1),3653            static_cast<RealType>(9.18649629646213969612e-1),3654            static_cast<RealType>(3.66343989541898286306e-1),3655            static_cast<RealType>(8.01010534748206001446e-2),3656            static_cast<RealType>(1.00553335007168823115e-2),3657            static_cast<RealType>(6.30966763237332075752e-4),3658        };3659 3660        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3661    }3662    else if (ilogb(p) >= -8) {3663        RealType t = -log2(ldexp(p, 4));3664 3665        // Rational Approximation3666        // Maximum Relative Error: 5.8994e-173667        BOOST_MATH_STATIC const RealType P[9] = {3668            static_cast<RealType>(7.06147398566773538296e-1),3669            static_cast<RealType>(4.26802162741800814387e-1),3670            static_cast<RealType>(1.32254436707168800420e-1),3671            static_cast<RealType>(2.86055054496737936396e-2),3672            static_cast<RealType>(3.63373131686703931514e-3),3673            static_cast<RealType>(3.84438945816411937013e-4),3674            static_cast<RealType>(1.67768561420296743529e-5),3675            static_cast<RealType>(8.76982374043363061978e-7),3676            static_cast<RealType>(-1.99744396595921347207e-8),3677        };3678        BOOST_MATH_STATIC const RealType Q[9] = {3679            static_cast<RealType>(1),3680            static_cast<RealType>(6.28190787856605587324e-1),3681            static_cast<RealType>(2.10992746593815791546e-1),3682            static_cast<RealType>(4.44397672327578790713e-2),3683            static_cast<RealType>(6.02768341661155914525e-3),3684            static_cast<RealType>(5.46578619531721658923e-4),3685            static_cast<RealType>(3.11116573895074296750e-5),3686            static_cast<RealType>(1.17729007979018602786e-6),3687            static_cast<RealType>(-2.78441865351376040812e-8),3688        };3689 3690        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3691    }3692    else if (ilogb(p) >= -16) {3693        RealType t = -log2(ldexp(p, 8));3694 3695        // Rational Approximation3696        // Maximum Relative Error: 8.8685e-173697        BOOST_MATH_STATIC const RealType P[9] = {3698            static_cast<RealType>(6.48209596014908359251e-1),3699            static_cast<RealType>(2.52611824671691390768e-1),3700            static_cast<RealType>(4.65114070477803399291e-2),3701            static_cast<RealType>(5.23373513313686849909e-3),3702            static_cast<RealType>(3.83113384161076881958e-4),3703            static_cast<RealType>(1.96230077517629530809e-5),3704            static_cast<RealType>(5.83117485120890819338e-7),3705            static_cast<RealType>(6.92614450423703079737e-9),3706            static_cast<RealType>(-3.89531123166658723619e-10),3707        };3708        BOOST_MATH_STATIC const RealType Q[9] = {3709            static_cast<RealType>(1),3710            static_cast<RealType>(3.99413988076189200840e-1),3711            static_cast<RealType>(7.32068638518417765776e-2),3712            static_cast<RealType>(8.15517102642752348889e-3),3713            static_cast<RealType>(6.09126071418098074914e-4),3714            static_cast<RealType>(3.03794079468789962611e-5),3715            static_cast<RealType>(9.32109079205017197662e-7),3716            static_cast<RealType>(1.05435710482490499583e-8),3717            static_cast<RealType>(-6.08748435983193979360e-10),3718        };3719 3720        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3721    }3722    else if (ilogb(p) >= -32) {3723        RealType t = -log2(ldexp(p, 16));3724 3725        // Rational Approximation3726        // Maximum Relative Error: 1.0253e-173727        BOOST_MATH_STATIC const RealType P[10] = {3728            static_cast<RealType>(6.36719010559816164896e-1),3729            static_cast<RealType>(2.06504115804034148753e-1),3730            static_cast<RealType>(3.28085429275407182582e-2),3731            static_cast<RealType>(3.31676417519020335859e-3),3732            static_cast<RealType>(2.35502578757551086372e-4),3733            static_cast<RealType>(1.21652240566662139418e-5),3734            static_cast<RealType>(4.57039495420392748658e-7),3735            static_cast<RealType>(1.18090959236399583940e-8),3736            static_cast<RealType>(1.77492646969597480221e-10),3737            static_cast<RealType>(-2.19331267300885448673e-17),3738        };3739        BOOST_MATH_STATIC const RealType Q[9] = {3740            static_cast<RealType>(1),3741            static_cast<RealType>(3.24422807416528490276e-1),3742            static_cast<RealType>(5.15290129833049138552e-2),3743            static_cast<RealType>(5.21051235888272287209e-3),3744            static_cast<RealType>(3.69895399249472399625e-4),3745            static_cast<RealType>(1.91103139437893226482e-5),3746            static_cast<RealType>(7.17882574725373091636e-7),3747            static_cast<RealType>(1.85502934977316481559e-8),3748            static_cast<RealType>(2.78798057565507249164e-10),3749        };3750 3751        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3752    }3753    else if (ilogb(p) >= -64) {3754        RealType t = -log2(ldexp(p, 32));3755 3756        // Rational Approximation3757        // Maximum Relative Error: 8.1705e-173758        BOOST_MATH_STATIC const RealType P[9] = {3759            static_cast<RealType>(6.36619775525705206992e-1),3760            static_cast<RealType>(2.68335698140634792041e-1),3761            static_cast<RealType>(5.49803347535070103650e-2),3762            static_cast<RealType>(7.25018344556356907109e-3),3763            static_cast<RealType>(6.87753481255849254220e-4),3764            static_cast<RealType>(4.86155006277788340253e-5),3765            static_cast<RealType>(2.84604768310787862450e-6),3766            static_cast<RealType>(9.56133960810049319917e-8),3767            static_cast<RealType>(5.26850116571886385248e-9),3768        };3769        BOOST_MATH_STATIC const RealType Q[9] = {3770            static_cast<RealType>(1),3771            static_cast<RealType>(4.21500730173440590900e-1),3772            static_cast<RealType>(8.63629077498258325752e-2),3773            static_cast<RealType>(1.13885615328098640032e-2),3774            static_cast<RealType>(1.08032064178130906887e-3),3775            static_cast<RealType>(7.63650498196064792408e-5),3776            static_cast<RealType>(4.47056124637379045275e-6),3777            static_cast<RealType>(1.50189171357721423127e-7),3778            static_cast<RealType>(8.27574227882033707932e-9),3779        };3780 3781        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3782    }3783    else {3784        result = 2 / (constants::pi<RealType>() * p);3785    }3786 3787    return result;3788}3789 3790 3791template <class RealType>3792BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_upper_imp_prec(const RealType& p, const boost::math::integral_constant<int, 113>&)3793{3794    BOOST_MATH_STD_USING3795    RealType result;3796 3797    if (p >= 0.4375) {3798        RealType t = p - 0.4375;3799 3800        // Rational Approximation3801        // Maximum Relative Error: 1.4465e-353802        // LCOV_EXCL_START3803        BOOST_MATH_STATIC const RealType P[11] = {3804            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.08338732735341567163440035550389989556e-1),3805            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.27245731792290848390848202647311435023e0),3806            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.29317169036386848462079766136373749420e1),3807            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.36342136825575317326816540539659955416e1),3808            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.31108700679715257074164180252148868348e1),3809            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.81863611749256385875333154189074054367e1),3810            BOOST_MATH_BIG_CONSTANT(RealType, 113, -8.11618233433781722149749739225688743102e1),3811            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.45241854625686954669050322459035410227e1),3812            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.09780430233523239228350030812868983054e1),3813            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.42232005306623465126477816911649683789e1),3814            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.24816048952817367950452675590290535540e0),3815        };3816        BOOST_MATH_STATIC const RealType Q[10] = {3817            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3818            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.80464069267458650284548842830642770344e0),3819            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.28240205449280944407125436342013240876e0),3820            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.94145088402407692372903806765594642452e1),3821            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.30062294376971843436236253827463203953e1),3822            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.47118047660686070998671803800237836970e1),3823            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.00643263133479482753298910520340235765e1),3824            BOOST_MATH_BIG_CONSTANT(RealType, 113, -3.79460803824650509439313928266686172255e1),3825            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.32647058691746306769699006355256099134e0),3826            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.59208938705683333141038012302171324544e0),3827        };3828        // LCOV_EXCL_STOP3829        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3830    }3831    else if (p >= 0.375) {3832        RealType t = p - 0.375;3833 3834        // Rational Approximation3835        // Maximum Relative Error: 5.1929e-353836        // LCOV_EXCL_START3837        BOOST_MATH_STATIC const RealType P[11] = {3838            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.31348919222343858173602105619413801018e0),3839            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.02800226274700443079521563669609776285e0),3840            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.02091675505570786434803291987263553778e1),3841            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50141943970885120432710080552941486001e1),3842            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.93099903417013423125762526465625227789e1),3843            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.56412922160141953385088141936082249641e1),3844            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.47026602535072645589119440784669747242e2),3845            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.01068960815396205074336853052832780888e1),3846            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.86591619131639705495877493344047777421e1),3847            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.26390836417639942474165178280649450755e1),3848            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.18212484486162942333407102351878915285e0),3849        };3850        BOOST_MATH_STATIC const RealType Q[10] = {3851            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3852            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.97802777458574322604171035748634755981e0),3853            BOOST_MATH_BIG_CONSTANT(RealType, 113, -4.33277809211107726455308655998819166901e0),3854            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.76555481647551088626503871996617234475e1),3855            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.33146828123660043197526014404644087069e0),3856            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.65159900182434446550785415837526228592e1),3857            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.32391192521438191878041140980983374411e0),3858            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.12112886240590711980064990996002999330e1),3859            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.93964809733838306198746831833843897743e0),3860            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.53948309965401603055162465663290204205e1),3861        };3862        // LCOV_EXCL_STOP3863        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3864    }3865    else if (p >= 0.25) {3866        RealType t = p - 0.25;3867 3868        // Rational Approximation3869        // Maximum Relative Error: 3.2765e-353870        // LCOV_EXCL_START3871        BOOST_MATH_STATIC const RealType P[13] = {3872            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.55081568282045925871949387822806890848e0),3873            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.21080883686702131458668798583937913025e1),3874            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.15083151599213113740932148510289036342e1),3875            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.94190629930345397070104862391009053509e2),3876            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.40768205403470729468297576291723141480e2),3877            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.00001008242667338579153437084294876585e2),3878            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.70900785394455368299616221471466320407e3),3879            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.48947677419760753410122194475234527150e1),3880            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.01826174001050912355357867446431955195e3),3881            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.55833657916143927452986099130671173511e2),3882            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.32953617526068647169047596631564287934e2),3883            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.32825234826729794599233825734928884074e-1),3884            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.47352171888649528242284500266830013906e1),3885        };3886        BOOST_MATH_STATIC const RealType Q[13] = {3887            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3888            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.40793887011403443604922082103267036101e1),3889            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.04348824299115035210088417095305744248e1),3890            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.19680004238557953382868629429538716069e2),3891            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.31172263627566980203163658640597441741e2),3892            BOOST_MATH_BIG_CONSTANT(RealType, 113, -6.07390429662527773449936608284938592773e2),3893            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.94877589960261706923147291496752293313e2),3894            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.94903802003585398809229608695623474341e2),3895            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.80417437710146805538675929521229778181e2),3896            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.23364098614130091185959973343748897970e2),3897            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.12975537807357019330268041620753617442e2),3898            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.36592279898578127130605391750428961301e1),3899            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18495624730372864715421146607185990918e1),3900        };3901        // LCOV_EXCL_STOP3902        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3903    }3904    else if (p >= 0.125) {3905        RealType t = p - 0.125;3906 3907        // Rational Approximation3908        // Maximum Relative Error: 1.8007e-353909        // LCOV_EXCL_START3910        BOOST_MATH_STATIC const RealType P[14] = {3911            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.68160868054034088524891526884683014057e0),3912            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85165791469635551063850795991424359350e2),3913            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.42938802867742165917839659578485422534e3),3914            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.59273512668331194186228996665355137458e4),3915            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.91680503091725091370507732042764517726e4),3916            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85642348415580865994863513727308578556e4),3917            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.90181935466760294413877600892013910183e5),3918            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.89141276256233344773677083034724024215e5),3919            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.00250514074918631367419468760920281159e5),3920            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.28168216451109123143492880695546179794e6),3921            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.14996399533648172721538646235459709807e5),3922            BOOST_MATH_BIG_CONSTANT(RealType, 113, -9.58122093722347315498230864294015130011e5),3923            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.25168985723506298009849577846542992545e5),3924            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.01179759985059408785527092464505889999e5),3925        };3926        BOOST_MATH_STATIC const RealType Q[15] = {3927            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3928            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.08766677593618443545489115711858395831e1),3929            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.05163374816838964338807027995515659842e2),3930            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.62582103160439981904537982068579322820e3),3931            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.62170991799612186300694554812291085206e4),3932            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11013837158432827711075385018851760313e5),3933            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.45458895395245243570930804678601511371e5),3934            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.08336489932795411216528182314354971403e5),3935            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.11314692423102333551299419575616734987e5),3936            BOOST_MATH_BIG_CONSTANT(RealType, 113, -2.43287683964711678082430107025218057096e5),3937            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.62052814931825182298493472041247278475e5),3938            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91440920656902450957296030252809476245e5),3939            BOOST_MATH_BIG_CONSTANT(RealType, 113, -1.54913345383745613446952578605023052270e5),3940            BOOST_MATH_BIG_CONSTANT(RealType, 113, -5.76034827722473399290702590414091767416e4),3941            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.94027684838690965214346010602354223752e3),3942        };3943        // LCOV_EXCL_STOP3944        result = tools::evaluate_polynomial(P, t) / tools::evaluate_polynomial(Q, t);3945    }3946    else if (ilogb(p) >= -4) {3947        RealType t = -log2(ldexp(p, 3));3948 3949        // Rational Approximation3950        // Maximum Relative Error: 6.1905e-363951        // LCOV_EXCL_START3952        BOOST_MATH_STATIC const RealType P[13] = {3953            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.10201085067542610656114408605853786551e-1),3954            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.04725580445598482170291458376577106746e-1),3955            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.35945839005443673797792325217359695272e-1),3956            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.15894004364989372373490772246381545906e-1),3957            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.54550169514753150042231386414687368032e-2),3958            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50389998399729913427837945242228928632e-2),3959            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.75018554725308784191307050896936055909e-3),3960            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.95901705695908219804887362154169268380e-4),3961            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.34386856794684798098717884587473860604e-5),3962            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.89025399683852111061217430321882178699e-6),3963            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.19044156703773954109232310846984749672e-7),3964            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11932910013840927659486142481532276176e-8),3965            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.64064398716881126082770692219937093427e-10),3966        };3967        BOOST_MATH_STATIC const RealType Q[13] = {3968            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),3969            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24909572944428286558287313527068259394e0),3970            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.70912720447370835699164559729287157119e-1),3971            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.21998644852982625437008410769048682388e-1),3972            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.95906385698373052547496572397097325447e-2),3973            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.35344144061390771459100718852878517200e-2),3974            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.34168669072527413734185948498168454149e-3),3975            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.24488907049996230177518311480230131257e-4),3976            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.92059624838630990024209986717533470508e-5),3977            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.84464614954263838504154559314144088371e-6),3978            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.67874815200287308180777775077428545024e-7),3979            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.65919857481420519138294080418011981524e-8),3980            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.31466713452016682217190521435479677133e-10),3981        };3982        // LCOV_EXCL_STOP3983        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);3984    }3985    else if (ilogb(p) >= -8) {3986        RealType t = -log2(ldexp(p, 4));3987 3988        // Rational Approximation3989        // Maximum Relative Error: 8.5157e-353990        // LCOV_EXCL_START3991        BOOST_MATH_STATIC const RealType P[18] = {3992            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.06147398566773479301585022897491054494e-1),3993            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06137881154706023038556659418303323027e0),3994            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.00274868819366386235164897614448662308e-1),3995            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.03481313941011533876096564688041226638e-1),3996            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.50172569438851062169493372974287427240e-1),3997            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.33370725278950299189434839636002761850e-2),3998            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.97566905908106543054773229070602272718e-3),3999            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.85701973515993932384374087677862623215e-3),4000            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.81956143385351702288398705969037130205e-4),4001            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.49975572102999645354655667945479202048e-5),4002            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.54665400959860442558683245665801873530e-6),4003            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.94292402413454232307556797758030774716e-7),4004            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.98038791388715925556623187510676330309e-8),4005            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.11242951548709169234296005470944661995e-9),4006            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.92636379295018831848234711132457626676e-11),4007            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.77389296072621088586880199705598178518e-12),4008            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.57808410784300002747916947756919004207e-14),4009            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.93860773322862111592582321183379587624e-16),4010        };4011        BOOST_MATH_STATIC const RealType Q[18] = {4012            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),4013            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.52683694883265337797012770275040297516e0),4014            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17837082293165509684677505408307814500e0),4015            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.06195236296471366891670923430225774487e-1),4016            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29459155224640682509948954218044556307e-1),4017            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.71350726081102446771887145938865551618e-2),4018            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.55986063168260695680927535587363081713e-2),4019            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.91996892322204645930710038043021675160e-3),4020            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.43907073162091303683795779882887569537e-4),4021            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.50034830055055263363497137448887884379e-5),4022            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.56615898355501904078935686679056442496e-6),4023            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.61099855362387625880067378834775577974e-7),4024            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.12940315230564635808566630258463831421e-8),4025            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.73572881409271303264226007333510301220e-9),4026            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.77786420070246087920941454352749186288e-11),4027            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.77914406265766625938477137082940482898e-12),4028            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.19708585422668069396821478975324123588e-14),4029            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.40406059898292960948942525697075698413e-15),4030        };4031        // LCOV_EXCL_STOP4032        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);4033    }4034    else if (ilogb(p) >= -16) {4035        RealType t = -log2(ldexp(p, 8));4036 4037        // Rational Approximation4038        // Maximum Relative Error: 7.6812e-364039        // LCOV_EXCL_START4040        BOOST_MATH_STATIC const RealType P[18] = {4041            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.48209596014908270566135466727658374314e-1),4042            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.02026332003132864886056710532156370366e-1),4043            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.68941634461905013212266453851941196774e-1),4044            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.61650792370551069313309111250434438540e-2),4045            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.52611930219013953260661961529732777539e-2),4046            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29488123972430683478601278003510200360e-3),4047            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.68806175827491046693183596144172426378e-4),4048            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.51806782259569842628995584152985951836e-5),4049            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.92353868262961486571527005289554589652e-6),4050            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.21494769586031703137329731447673056499e-7),4051            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.39837421784601055804920937629607771973e-9),4052            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.82216155524308827738242486229625170158e-10),4053            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.04275785296896148301798836366902456306e-11),4054            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.19999929939765873468528448012634122362e-13),4055            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.03583326787146398902262502660879425573e-15),4056            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.59755092249701477917281379650537907903e-16),4057            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.32583227076029470589713734885690555562e-18),4058            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.18237323554153660947807202150429686004e-20),4059        };4060        BOOST_MATH_STATIC const RealType Q[18] = {4061            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),4062            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.38459552164692902984228821988876295376e-1),4063            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.21584899508575302641780901222203752951e-1),4064            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.19656836695824518143414401720590693544e-1),4065            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.39821085943818944882332778361549212756e-2),4066            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.60484296824768079700823824408428524933e-3),4067            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.22173385695010329771921985088956556771e-4),4068            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.95541259523416810836752584764202086573e-5),4069            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.02184255281138028802991551275755427743e-6),4070            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.90825805251143907045903671893185297007e-7),4071            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.00501277755608081163250456177637280682e-8),4072            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.43387099521800224735155351696799358451e-10),4073            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.63751106922299101655071906417624415019e-11),4074            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.02796982349519589339629488980132546290e-13),4075            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.26197249278457937947269910907701176956e-14),4076            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.50981935956236238709523457678017928506e-16),4077            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.65309560070040982176772709693008187384e-18),4078            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.42817828965851841104270899392956866435e-20),4079        };4080        // LCOV_EXCL_STOP4081        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);4082    }4083    else if (ilogb(p) >= -32) {4084        RealType t = -log2(ldexp(p, 16));4085 4086        // Rational Approximation4087        // Maximum Relative Error: 2.8388e-354088        // LCOV_EXCL_START4089        BOOST_MATH_STATIC const RealType P[18] = {4090            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36719010559816175149447242695581604280e-1),4091            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.14714772485724956396126176973339095223e-1),4092            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.47792450677638612907408723539943311437e-2),4093            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.14084804538576805298420530820092167411e-2),4094            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.25784891219227004394312050838763762669e-3),4095            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06837168825575413225975778906503529455e-4),4096            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.26908306638706189702624634771158355088e-6),4097            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.06396335535135452379658152785541731746e-7),4098            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.89854018431899039966628599727721422261e-8),4099            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.48974049316978526855972339306215972434e-10),4100            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.50886538662952684349385729585856778829e-11),4101            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.14095970401472469264258565259303801322e-13),4102            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.71915162586912203234023473966563445362e-14),4103            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.46099196574734038609354417874908346873e-16),4104            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.69944075002490023348175340827135133316e-18),4105            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.37340205792165863440617831987825515203e-20),4106            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.87812199530402923085142356622707924805e-22),4107            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.76810877067601573471489978907720495511e-24),4108        };4109        BOOST_MATH_STATIC const RealType Q[18] = {4110            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),4111            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.94373217074550329856398644558576545146e-1),4112            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17462725343185049507839058445338783693e-1),4113            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.79202779096887355136298419604918306868e-2),4114            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.97583473532621831662838256679872014292e-3),4115            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67819154370257505016693473230060726722e-4),4116            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.14182379349642191946237975301363902175e-5),4117            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.38367234191828732305257162934647076311e-7),4118            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.98221340505887984555143894024281550376e-8),4119            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.17648765147609962405833802498013198305e-9),4120            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.94091261341172666220769613477202626517e-11),4121            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.12169979717068598708585414568018667622e-12),4122            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.70043694579268983742161305612636042906e-14),4123            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.43651270200498902307944806310116446583e-16),4124            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.95266223996097470768947426604723764300e-18),4125            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.15821111112681530432702452073811996961e-19),4126            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.08041298058041360645934320138765284054e-21),4127            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.91893114159827950553463154758337724676e-24),4128        };4129        // LCOV_EXCL_STOP4130        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);4131    }4132    else if (ilogb(p) >= -64) {4133        RealType t = -log2(ldexp(p, 32));4134 4135        // Rational Approximation4136        // Maximum Relative Error: 1.8746e-354137        // LCOV_EXCL_START4138        BOOST_MATH_STATIC const RealType P[19] = {4139            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619775525705288697351261475419832625e-1),4140            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.29882145587771350744255724773409752285e-1),4141            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.07952726597277085327360888304737411175e-2),4142            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.72928496414816922167597110591366081416e-3),4143            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.01641163277458693633771532254570177776e-4),4144            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.65627339211110756774878685166318417370e-5),4145            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.41953343652571732907631074381749818724e-6),4146            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.27682202874503433884090203197149318368e-8),4147            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.33177176779158737868498722222027162030e-9),4148            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.34485618544363735547395633416797591537e-11),4149            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.96996761199233617188435782568975757378e-12),4150            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.49631247632674130553464740647053162499e-14),4151            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.68090516971007163491968659797593218680e-16),4152            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.39910262557283449853923535586722968539e-17),4153            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.83704888007521886644896435914745476741e-19),4154            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.87884425419276681417666064027484555860e-21),4155            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.36600092466902449189685791563990733005e-23),4156            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.53604301472332155307661986064796109517e-26),4157            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.65664588229982894587678197374867153136e-40),4158        };4159        BOOST_MATH_STATIC const RealType Q[18] = {4160            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),4161            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.61098031370834273919229478584740981117e-1),4162            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.40810642301361416278392589243623940154e-2),4163            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.42874346984605660407576451987840217534e-3),4164            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.30896462654364903689199648803900475405e-4),4165            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.17246449391141576955714059812811712587e-5),4166            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.22979790521806964047777145482613709395e-6),4167            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.85960899519336488582042102184331670230e-8),4168            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.66273852553220863665584472398487539899e-9),4169            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.15372731217983084923067673501176233172e-10),4170            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.09441788794783860366430915309857085224e-12),4171            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.06279112323261126652767146380404236150e-14),4172            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.36359339522621405197747209968637035618e-15),4173            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.19770526521305519813109395521868217810e-17),4174            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.88562963284557433336083678206625018948e-19),4175            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.95128165317597657325539450957778690578e-21),4176            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.14570923483883184645242764315877865073e-23),4177            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.69599603258626408321886443187629340033e-26),4178        };4179        // LCOV_EXCL_STOP4180        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);4181    }4182    else if (ilogb(p) >= -128) {4183        RealType t = -log2(ldexp(p, 64));4184 4185        // Rational Approximation4186        // Maximum Relative Error: 3.9915e-354187        // LCOV_EXCL_START4188        BOOST_MATH_STATIC const RealType P[18] = {4189            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.36619772367581344576326594951209529606e-1),4190            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.72456363182667891167613558295097711432e-1),4191            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.74486567435450138741058930951301644059e-2),4192            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.94624522781897679952110594449134468564e-3),4193            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.09848623985771449914778668831103210333e-4),4194            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.47493285141689711937343304940229517457e-5),4195            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.22134975575390048261922652492143139174e-6),4196            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.30240148387764167235466713023950979069e-7),4197            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.06917824188001432265980161955665997666e-8),4198            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.27834220508404489112697949450988070802e-10),4199            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.48663447630051388468872352628795428134e-11),4200            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.50514504588736921389704370029090421684e-13),4201            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.18965303814265217659151418619980209487e-14),4202            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.74200654214326267651127117044008493519e-16),4203            BOOST_MATH_BIG_CONSTANT(RealType, 113, 5.34060054352573532839373386456991657111e-18),4204            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.34240516843783954067548886404044879120e-20),4205            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.07803703545135964499326712080667886449e-21),4206            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.61500479431085205124031101160332446432e-23),4207        };4208        BOOST_MATH_STATIC const RealType Q[18] = {4209            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.),4210            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.27973454499231032893774072677004977154e-1),4211            BOOST_MATH_BIG_CONSTANT(RealType, 113, 9.02401389920613749641292661572240166038e-2),4212            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.24819328156695252221821935845914708591e-2),4213            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.27210724381675120281861717194783977895e-3),4214            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.01708007392492681238863778030115281961e-4),4215            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.63088069045476088736355784718397594807e-6),4216            BOOST_MATH_BIG_CONSTANT(RealType, 113, 3.61660379368211892821215228891806384883e-7),4217            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.67946125503415200067055797463173521598e-8),4218            BOOST_MATH_BIG_CONSTANT(RealType, 113, 6.72040422051759599096448422858046040086e-10),4219            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.33519997465950200122152159780364149268e-11),4220            BOOST_MATH_BIG_CONSTANT(RealType, 113, 7.07666528975810553712124845533861745455e-13),4221            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.86870262247486708096341722190198527508e-14),4222            BOOST_MATH_BIG_CONSTANT(RealType, 113, 4.30713380444621290817686989936029997572e-16),4223            BOOST_MATH_BIG_CONSTANT(RealType, 113, 8.38899571664905345700275460272815357978e-18),4224            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.46750157220118157937510816924752429685e-19),4225            BOOST_MATH_BIG_CONSTANT(RealType, 113, 1.69337661543585547694652989893297703060e-21),4226            BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.53684359865963395505791671817598669527e-23),4227        };4228        // LCOV_EXCL_STOP4229        result = tools::evaluate_polynomial(P, t) / (tools::evaluate_polynomial(Q, t) * p);4230    }4231    else {4232        result = 2 / (constants::pi<RealType>() * p);4233    }4234 4235    return result;4236}4237 4238template <class RealType>4239BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_imp_prec(const RealType& p, bool complement, const boost::math::integral_constant<int, 53>& tag)4240{4241    if (p > 0.5) 4242    {4243        return !complement ? landau_quantile_upper_imp_prec(1 - p, tag) : landau_quantile_lower_imp_prec(1 - p, tag);4244    }4245 4246    return complement ? landau_quantile_upper_imp_prec(p, tag) : landau_quantile_lower_imp_prec(p, tag);4247}4248 4249template <class RealType>4250BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_imp_prec(const RealType& p, bool complement, const boost::math::integral_constant<int, 113>& tag)4251{4252    if (p > 0.5) 4253    {4254        return !complement ? landau_quantile_upper_imp_prec(1 - p, tag) : landau_quantile_lower_imp_prec(1 - p, tag);4255    }4256 4257    return complement ? landau_quantile_upper_imp_prec(p, tag) : landau_quantile_lower_imp_prec(p, tag);4258}4259 4260template <class RealType, class Policy>4261BOOST_MATH_GPU_ENABLED inline RealType landau_quantile_imp(const landau_distribution<RealType, Policy>& dist, const RealType& p, bool complement)4262{4263    // This routine implements the quantile for the Landau distribution,4264    // the value p may be the probability, or its complement if complement=true.4265 4266    constexpr auto function = "boost::math::quantile(landau<%1%>&, %1%)";4267    BOOST_MATH_STD_USING // for ADL of std functions4268 4269    RealType result = 0;4270    RealType scale = dist.scale();4271    RealType location = dist.location();4272    RealType bias = dist.bias();4273 4274    if (false == detail::check_location(function, location, &result, Policy()))4275    {4276        return result;4277    }4278    if (false == detail::check_scale(function, scale, &result, Policy()))4279    {4280        return result;4281    }4282    if (false == detail::check_probability(function, p, &result, Policy()))4283    {4284        return result;4285    }4286 4287    typedef typename tools::promote_args<RealType>::type result_type;4288    typedef typename policies::precision<result_type, Policy>::type precision_type;4289    typedef boost::math::integral_constant<int,4290        precision_type::value <= 0 ? 0 :4291        precision_type::value <= 53 ? 53 :4292        precision_type::value <= 113 ? 113 : 04293    > tag_type;4294 4295    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");4296 4297    result = location + scale * (landau_quantile_imp_prec(p, complement, tag_type()) - bias);4298 4299    return result;4300}4301 4302template <class RealType>4303BOOST_MATH_GPU_ENABLED inline RealType landau_mode_imp_prec(const boost::math::integral_constant<int, 53>&)4304{4305    return static_cast<RealType>(-0.42931452986133525017);4306}4307 4308template <class RealType>4309BOOST_MATH_GPU_ENABLED inline RealType landau_mode_imp_prec(const boost::math::integral_constant<int, 113>&)4310{4311    return BOOST_MATH_BIG_CONSTANT(RealType, 113, -0.42931452986133525016556463510885028346);4312}4313 4314template <class RealType, class Policy>4315BOOST_MATH_GPU_ENABLED inline RealType landau_mode_imp(const landau_distribution<RealType, Policy>& dist)4316{4317    // This implements the mode for the Landau distribution,4318 4319    constexpr auto function = "boost::math::mode(landau<%1%>&, %1%)";4320    BOOST_MATH_STD_USING // for ADL of std functions4321 4322    RealType result = 0;4323    RealType scale = dist.scale();4324    RealType location = dist.location();4325    RealType bias = dist.bias();4326 4327    if (false == detail::check_location(function, location, &result, Policy()))4328    {4329        return result;4330    }4331    if (false == detail::check_scale(function, scale, &result, Policy()))4332    {4333        return result;4334    }4335 4336    typedef typename tools::promote_args<RealType>::type result_type;4337    typedef typename policies::precision<result_type, Policy>::type precision_type;4338    typedef boost::math::integral_constant<int,4339        precision_type::value <= 0 ? 0 :4340        precision_type::value <= 53 ? 53 :4341        precision_type::value <= 113 ? 113 : 04342    > tag_type;4343 4344    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");4345 4346    result = location + scale * (landau_mode_imp_prec<RealType>(tag_type()) - bias);4347 4348    return result;4349}4350 4351template <class RealType>4352BOOST_MATH_GPU_ENABLED inline RealType landau_median_imp_prec(const boost::math::integral_constant<int, 53>&)4353{4354    return static_cast<RealType>(0.57563014394507821440);4355}4356 4357template <class RealType>4358BOOST_MATH_GPU_ENABLED inline RealType landau_median_imp_prec(const boost::math::integral_constant<int, 113>&)4359{4360    return BOOST_MATH_BIG_CONSTANT(RealType, 113, 0.57563014394507821439627930892257517269);4361}4362 4363template <class RealType, class Policy>4364BOOST_MATH_GPU_ENABLED inline RealType landau_median_imp(const landau_distribution<RealType, Policy>& dist)4365{4366    // This implements the median for the Landau distribution,4367 4368    constexpr auto function = "boost::math::median(landau<%1%>&, %1%)";4369    BOOST_MATH_STD_USING // for ADL of std functions4370 4371    RealType result = 0;4372    RealType scale = dist.scale();4373    RealType location = dist.location();4374    RealType bias = dist.bias();4375 4376    if (false == detail::check_location(function, location, &result, Policy()))4377    {4378        return result;4379    }4380    if (false == detail::check_scale(function, scale, &result, Policy()))4381    {4382        return result;4383    }4384 4385    typedef typename tools::promote_args<RealType>::type result_type;4386    typedef typename policies::precision<result_type, Policy>::type precision_type;4387    typedef boost::math::integral_constant<int,4388        precision_type::value <= 0 ? 0 :4389        precision_type::value <= 53 ? 53 :4390        precision_type::value <= 113 ? 113 : 04391    > tag_type;4392 4393    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");4394 4395    result = location + scale * (landau_median_imp_prec<RealType>(tag_type()) - bias);4396 4397    return result;4398}4399 4400template <class RealType>4401BOOST_MATH_GPU_ENABLED inline RealType landau_entropy_imp_prec(const boost::math::integral_constant<int, 53>&)4402{4403    return static_cast<RealType>(2.37263644000448182448);4404}4405 4406template <class RealType>4407BOOST_MATH_GPU_ENABLED inline RealType landau_entropy_imp_prec(const boost::math::integral_constant<int, 113>&)4408{4409    return BOOST_MATH_BIG_CONSTANT(RealType, 113, 2.3726364400044818244844049010588577710);4410}4411 4412template <class RealType, class Policy>4413BOOST_MATH_GPU_ENABLED inline RealType landau_entropy_imp(const landau_distribution<RealType, Policy>& dist)4414{4415    // This implements the entropy for the Landau distribution,4416 4417    constexpr auto function = "boost::math::entropy(landau<%1%>&, %1%)";4418    BOOST_MATH_STD_USING // for ADL of std functions4419 4420    RealType result = 0;4421    RealType scale = dist.scale();4422 4423    if (false == detail::check_scale(function, scale, &result, Policy()))4424    {4425        return result;4426    }4427 4428    typedef typename tools::promote_args<RealType>::type result_type;4429    typedef typename policies::precision<result_type, Policy>::type precision_type;4430    typedef boost::math::integral_constant<int,4431        precision_type::value <= 0 ? 0 :4432        precision_type::value <= 53 ? 53 :4433        precision_type::value <= 113 ? 113 : 04434    > tag_type;4435 4436    static_assert(tag_type::value, "The Landau distribution is only implemented for types with known precision, and 113 bits or fewer in the mantissa (ie 128 bit quad-floats");4437 4438    result = landau_entropy_imp_prec<RealType>(tag_type()) + log(scale);4439 4440    return result;4441}4442 4443} // detail4444 4445template <class RealType = double, class Policy = policies::policy<> >4446class landau_distribution4447{4448    public:4449    typedef RealType value_type;4450    typedef Policy policy_type;4451 4452    BOOST_MATH_GPU_ENABLED landau_distribution(RealType l_location = 0, RealType l_scale = 1)4453        : mu(l_location), c(l_scale)4454    {4455        BOOST_MATH_STD_USING4456        4457        constexpr auto function = "boost::math::landau_distribution<%1%>::landau_distribution";4458        RealType result = 0;4459        detail::check_location(function, l_location, &result, Policy());4460        detail::check_scale(function, l_scale, &result, Policy());4461 4462        location_bias = -2 / constants::pi<RealType>() * log(l_scale);4463    } // landau_distribution4464 4465    BOOST_MATH_GPU_ENABLED RealType location()const4466    {4467        return mu;4468    }4469    BOOST_MATH_GPU_ENABLED RealType scale()const4470    {4471        return c;4472    }4473    BOOST_MATH_GPU_ENABLED RealType bias()const4474    {4475        return location_bias;4476    }4477 4478    private:4479    RealType mu;    // The location parameter.4480    RealType c;     // The scale parameter.4481    RealType location_bias;  // = -2 / pi * log(c)4482};4483 4484typedef landau_distribution<double> landau;4485 4486#ifdef __cpp_deduction_guides4487template <class RealType>4488landau_distribution(RealType) -> landau_distribution<typename boost::math::tools::promote_args<RealType>::type>;4489template <class RealType>4490landau_distribution(RealType, RealType) -> landau_distribution<typename boost::math::tools::promote_args<RealType>::type>;4491#endif4492 4493template <class RealType, class Policy>4494BOOST_MATH_GPU_ENABLED inline const boost::math::pair<RealType, RealType> range(const landau_distribution<RealType, Policy>&)4495{ // Range of permissible values for random variable x.4496    BOOST_MATH_IF_CONSTEXPR (boost::math::numeric_limits<RealType>::has_infinity)4497    {4498        return boost::math::pair<RealType, RealType>(-boost::math::numeric_limits<RealType>::infinity(), boost::math::numeric_limits<RealType>::infinity()); // - to + infinity.4499    }4500    else4501    { // Can only use max_value.4502        using boost::math::tools::max_value;4503        return boost::math::pair<RealType, RealType>(-max_value<RealType>(), max_value<RealType>()); // - to + max.4504    }4505}4506 4507template <class RealType, class Policy>4508BOOST_MATH_GPU_ENABLED inline const boost::math::pair<RealType, RealType> support(const landau_distribution<RealType, Policy>&)4509{ // Range of supported values for random variable x.4510   // This is range where cdf rises from 0 to 1, and outside it, the pdf is zero.4511    BOOST_MATH_IF_CONSTEXPR (boost::math::numeric_limits<RealType>::has_infinity)4512    {4513        return boost::math::pair<RealType, RealType>(-boost::math::numeric_limits<RealType>::infinity(), boost::math::numeric_limits<RealType>::infinity()); // - to + infinity.4514    }4515    else4516    { // Can only use max_value.4517        using boost::math::tools::max_value;4518        return boost::math::pair<RealType, RealType>(-tools::max_value<RealType>(), max_value<RealType>()); // - to + max.4519    }4520}4521 4522template <class RealType, class Policy>4523BOOST_MATH_GPU_ENABLED inline RealType pdf(const landau_distribution<RealType, Policy>& dist, const RealType& x)4524{4525    return detail::landau_pdf_imp(dist, x);4526} // pdf4527 4528template <class RealType, class Policy>4529BOOST_MATH_GPU_ENABLED inline RealType cdf(const landau_distribution<RealType, Policy>& dist, const RealType& x)4530{4531    return detail::landau_cdf_imp(dist, x, false);4532} // cdf4533 4534template <class RealType, class Policy>4535BOOST_MATH_GPU_ENABLED inline RealType quantile(const landau_distribution<RealType, Policy>& dist, const RealType& p)4536{4537    return detail::landau_quantile_imp(dist, p, false);4538} // quantile4539 4540template <class RealType, class Policy>4541BOOST_MATH_GPU_ENABLED inline RealType cdf(const complemented2_type<landau_distribution<RealType, Policy>, RealType>& c)4542{4543    return detail::landau_cdf_imp(c.dist, c.param, true);4544} //  cdf complement4545 4546template <class RealType, class Policy>4547BOOST_MATH_GPU_ENABLED inline RealType quantile(const complemented2_type<landau_distribution<RealType, Policy>, RealType>& c)4548{4549    return detail::landau_quantile_imp(c.dist, c.param, true);4550} // quantile complement4551 4552template <class RealType, class Policy>4553BOOST_MATH_GPU_ENABLED inline RealType mean(const landau_distribution<RealType, Policy>&)4554{  // There is no mean:4555    typedef typename Policy::assert_undefined_type assert_type;4556    static_assert(assert_type::value == 0, "The Landau Distribution has no mean");4557 4558    return policies::raise_domain_error<RealType>(4559        "boost::math::mean(landau<%1%>&)",4560        "The Landau distribution does not have a mean: "4561        "the only possible return value is %1%.",4562        boost::math::numeric_limits<RealType>::quiet_NaN(), Policy());4563}4564 4565template <class RealType, class Policy>4566BOOST_MATH_GPU_ENABLED inline RealType variance(const landau_distribution<RealType, Policy>& /*dist*/)4567{4568    // There is no variance:4569    typedef typename Policy::assert_undefined_type assert_type;4570    static_assert(assert_type::value == 0, "The Landau Distribution has no variance");4571 4572    return policies::raise_domain_error<RealType>(4573        "boost::math::variance(landau<%1%>&)",4574        "The Landau distribution does not have a variance: "4575        "the only possible return value is %1%.",4576        boost::math::numeric_limits<RealType>::quiet_NaN(), Policy());4577}4578 4579template <class RealType, class Policy>4580BOOST_MATH_GPU_ENABLED inline RealType mode(const landau_distribution<RealType, Policy>& dist)4581{4582    return detail::landau_mode_imp(dist);4583}4584 4585template <class RealType, class Policy>4586BOOST_MATH_GPU_ENABLED inline RealType median(const landau_distribution<RealType, Policy>& dist)4587{4588    return detail::landau_median_imp(dist);4589}4590 4591template <class RealType, class Policy>4592BOOST_MATH_GPU_ENABLED inline RealType skewness(const landau_distribution<RealType, Policy>& /*dist*/)4593{4594    // There is no skewness:4595    typedef typename Policy::assert_undefined_type assert_type;4596    static_assert(assert_type::value == 0, "The Landau Distribution has no skewness");4597 4598    return policies::raise_domain_error<RealType>(4599        "boost::math::skewness(landau<%1%>&)",4600        "The Landau distribution does not have a skewness: "4601        "the only possible return value is %1%.",4602        boost::math::numeric_limits<RealType>::quiet_NaN(), Policy()); // infinity?4603}4604 4605template <class RealType, class Policy>4606BOOST_MATH_GPU_ENABLED inline RealType kurtosis(const landau_distribution<RealType, Policy>& /*dist*/)4607{4608    // There is no kurtosis:4609    typedef typename Policy::assert_undefined_type assert_type;4610    static_assert(assert_type::value == 0, "The Landau Distribution has no kurtosis");4611 4612    return policies::raise_domain_error<RealType>(4613        "boost::math::kurtosis(landau<%1%>&)",4614        "The Landau distribution does not have a kurtosis: "4615        "the only possible return value is %1%.",4616        boost::math::numeric_limits<RealType>::quiet_NaN(), Policy());4617}4618 4619template <class RealType, class Policy>4620BOOST_MATH_GPU_ENABLED inline RealType kurtosis_excess(const landau_distribution<RealType, Policy>& /*dist*/)4621{4622    // There is no kurtosis excess:4623    typedef typename Policy::assert_undefined_type assert_type;4624    static_assert(assert_type::value == 0, "The Landau Distribution has no kurtosis excess");4625 4626    return policies::raise_domain_error<RealType>(4627        "boost::math::kurtosis_excess(landau<%1%>&)",4628        "The Landau distribution does not have a kurtosis: "4629        "the only possible return value is %1%.",4630        boost::math::numeric_limits<RealType>::quiet_NaN(), Policy());4631}4632 4633template <class RealType, class Policy>4634BOOST_MATH_GPU_ENABLED inline RealType entropy(const landau_distribution<RealType, Policy>& dist)4635{4636    return detail::landau_entropy_imp(dist);4637}4638 4639}} // namespaces4640 4641 4642#endif // BOOST_STATS_LANDAU_HPP4643