gauss_kronrod.hpp 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. // Copyright John Maddock 2017.
  2. // Copyright Nick Thompson 2017.
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_MATH_QUADRATURE_GAUSS_KRONROD_HPP
  7. #define BOOST_MATH_QUADRATURE_GAUSS_KRONROD_HPP
  8. #ifdef _MSC_VER
  9. #pragma once
  10. #pragma warning(push)
  11. #pragma warning(disable: 4127)
  12. #endif
  13. #include <vector>
  14. #include <boost/math/special_functions/legendre.hpp>
  15. #include <boost/math/special_functions/legendre_stieltjes.hpp>
  16. #include <boost/math/quadrature/gauss.hpp>
  17. namespace boost { namespace math{ namespace quadrature{ namespace detail{
  18. #ifndef BOOST_MATH_GAUSS_NO_COMPUTE_ON_DEMAND
  19. template <class Real, unsigned N, unsigned tag>
  20. class gauss_kronrod_detail
  21. {
  22. static legendre_stieltjes<Real> const& get_legendre_stieltjes()
  23. {
  24. static const legendre_stieltjes<Real> data((N - 1) / 2 + 1);
  25. return data;
  26. }
  27. static std::vector<Real> calculate_abscissa()
  28. {
  29. static std::vector<Real> result = boost::math::legendre_p_zeros<Real>((N - 1) / 2);
  30. const legendre_stieltjes<Real> E = get_legendre_stieltjes();
  31. std::vector<Real> ls_zeros = E.zeros();
  32. result.insert(result.end(), ls_zeros.begin(), ls_zeros.end());
  33. std::sort(result.begin(), result.end());
  34. return result;
  35. }
  36. static std::vector<Real> calculate_weights()
  37. {
  38. std::vector<Real> result(abscissa().size(), 0);
  39. unsigned gauss_order = (N - 1) / 2;
  40. unsigned gauss_start = gauss_order & 1 ? 0 : 1;
  41. const legendre_stieltjes<Real>& E = get_legendre_stieltjes();
  42. for (unsigned i = gauss_start; i < abscissa().size(); i += 2)
  43. {
  44. Real x = abscissa()[i];
  45. Real p = boost::math::legendre_p_prime(gauss_order, x);
  46. Real gauss_weight = 2 / ((1 - x * x) * p * p);
  47. result[i] = gauss_weight + static_cast<Real>(2) / (static_cast<Real>(gauss_order + 1) * legendre_p_prime(gauss_order, x) * E(x));
  48. }
  49. for (unsigned i = gauss_start ? 0 : 1; i < abscissa().size(); i += 2)
  50. {
  51. Real x = abscissa()[i];
  52. result[i] = static_cast<Real>(2) / (static_cast<Real>(gauss_order + 1) * legendre_p(gauss_order, x) * E.prime(x));
  53. }
  54. return result;
  55. }
  56. public:
  57. static const std::vector<Real>& abscissa()
  58. {
  59. static std::vector<Real> data = calculate_abscissa();
  60. return data;
  61. }
  62. static const std::vector<Real>& weights()
  63. {
  64. static std::vector<Real> data = calculate_weights();
  65. return data;
  66. }
  67. };
  68. #else
  69. template <class Real, unsigned N, unsigned tag>
  70. class gauss_kronrod_detail;
  71. #endif
  72. template <class T>
  73. class gauss_kronrod_detail<T, 15, 0>
  74. {
  75. public:
  76. static std::array<T, 8> const & abscissa()
  77. {
  78. static const std::array<T, 8> data = {
  79. 0.000000000e+00f,
  80. 2.077849550e-01f,
  81. 4.058451514e-01f,
  82. 5.860872355e-01f,
  83. 7.415311856e-01f,
  84. 8.648644234e-01f,
  85. 9.491079123e-01f,
  86. 9.914553711e-01f,
  87. };
  88. return data;
  89. }
  90. static std::array<T, 8> const & weights()
  91. {
  92. static const std::array<T, 8> data = {
  93. 2.094821411e-01f,
  94. 2.044329401e-01f,
  95. 1.903505781e-01f,
  96. 1.690047266e-01f,
  97. 1.406532597e-01f,
  98. 1.047900103e-01f,
  99. 6.309209263e-02f,
  100. 2.293532201e-02f,
  101. };
  102. return data;
  103. }
  104. };
  105. template <class T>
  106. class gauss_kronrod_detail<T, 15, 1>
  107. {
  108. public:
  109. static std::array<T, 8> const & abscissa()
  110. {
  111. static const std::array<T, 8> data = {
  112. 0.00000000000000000e+00,
  113. 2.07784955007898468e-01,
  114. 4.05845151377397167e-01,
  115. 5.86087235467691130e-01,
  116. 7.41531185599394440e-01,
  117. 8.64864423359769073e-01,
  118. 9.49107912342758525e-01,
  119. 9.91455371120812639e-01,
  120. };
  121. return data;
  122. }
  123. static std::array<T, 8> const & weights()
  124. {
  125. static const std::array<T, 8> data = {
  126. 2.09482141084727828e-01,
  127. 2.04432940075298892e-01,
  128. 1.90350578064785410e-01,
  129. 1.69004726639267903e-01,
  130. 1.40653259715525919e-01,
  131. 1.04790010322250184e-01,
  132. 6.30920926299785533e-02,
  133. 2.29353220105292250e-02,
  134. };
  135. return data;
  136. }
  137. };
  138. template <class T>
  139. class gauss_kronrod_detail<T, 15, 2>
  140. {
  141. public:
  142. static std::array<T, 8> const & abscissa()
  143. {
  144. static const std::array<T, 8> data = {
  145. 0.00000000000000000000000000000000000e+00L,
  146. 2.07784955007898467600689403773244913e-01L,
  147. 4.05845151377397166906606412076961463e-01L,
  148. 5.86087235467691130294144838258729598e-01L,
  149. 7.41531185599394439863864773280788407e-01L,
  150. 8.64864423359769072789712788640926201e-01L,
  151. 9.49107912342758524526189684047851262e-01L,
  152. 9.91455371120812639206854697526328517e-01L,
  153. };
  154. return data;
  155. }
  156. static std::array<T, 8> const & weights()
  157. {
  158. static const std::array<T, 8> data = {
  159. 2.09482141084727828012999174891714264e-01L,
  160. 2.04432940075298892414161999234649085e-01L,
  161. 1.90350578064785409913256402421013683e-01L,
  162. 1.69004726639267902826583426598550284e-01L,
  163. 1.40653259715525918745189590510237920e-01L,
  164. 1.04790010322250183839876322541518017e-01L,
  165. 6.30920926299785532907006631892042867e-02L,
  166. 2.29353220105292249637320080589695920e-02L,
  167. };
  168. return data;
  169. }
  170. };
  171. #ifdef BOOST_HAS_FLOAT128
  172. template <class T>
  173. class gauss_kronrod_detail<T, 15, 3>
  174. {
  175. public:
  176. static std::array<T, 8> const & abscissa()
  177. {
  178. static const std::array<T, 8> data = {
  179. 0.00000000000000000000000000000000000e+00Q,
  180. 2.07784955007898467600689403773244913e-01Q,
  181. 4.05845151377397166906606412076961463e-01Q,
  182. 5.86087235467691130294144838258729598e-01Q,
  183. 7.41531185599394439863864773280788407e-01Q,
  184. 8.64864423359769072789712788640926201e-01Q,
  185. 9.49107912342758524526189684047851262e-01Q,
  186. 9.91455371120812639206854697526328517e-01Q,
  187. };
  188. return data;
  189. }
  190. static std::array<T, 8> const & weights()
  191. {
  192. static const std::array<T, 8> data = {
  193. 2.09482141084727828012999174891714264e-01Q,
  194. 2.04432940075298892414161999234649085e-01Q,
  195. 1.90350578064785409913256402421013683e-01Q,
  196. 1.69004726639267902826583426598550284e-01Q,
  197. 1.40653259715525918745189590510237920e-01Q,
  198. 1.04790010322250183839876322541518017e-01Q,
  199. 6.30920926299785532907006631892042867e-02Q,
  200. 2.29353220105292249637320080589695920e-02Q,
  201. };
  202. return data;
  203. }
  204. };
  205. #endif
  206. template <class T>
  207. class gauss_kronrod_detail<T, 15, 4>
  208. {
  209. public:
  210. static std::array<T, 8> const & abscissa()
  211. {
  212. static std::array<T, 8> data = {
  213. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  214. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0778495500789846760068940377324491347978440714517064971384573461986693844943520226910343227183698530560857645062738e-01),
  215. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.0584515137739716690660641207696146334738201409937012638704325179466381322612565532831268972774658776528675866604802e-01),
  216. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.8608723546769113029414483825872959843678075060436095130499289319880373607444407464511674498935942098956811555121368e-01),
  217. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.4153118559939443986386477328078840707414764714139026011995535196742987467218051379282683236686324705969251809311201e-01),
  218. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.6486442335976907278971278864092620121097230707408814860145771276706770813259572103585847859604590541475281326027862e-01),
  219. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.4910791234275852452618968404785126240077093767061778354876910391306333035484014080573077002792572414430073966699522e-01),
  220. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9145537112081263920685469752632851664204433837033470129108741357244173934653407235924503509626841760744349505339308e-01),
  221. };
  222. return data;
  223. }
  224. static std::array<T, 8> const & weights()
  225. {
  226. static std::array<T, 8> data = {
  227. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0948214108472782801299917489171426369776208022370431671299800656137515132325648616816908211675949102392971459688215e-01),
  228. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0443294007529889241416199923464908471651760418071835742447095312045467698546598879348374292009347554167803659293064e-01),
  229. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.9035057806478540991325640242101368282607807545535835588544088036744058072410212679605964605106377593834568683551139e-01),
  230. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.6900472663926790282658342659855028410624490030294424149734006755695680921619029112936702403855359908156070095656537e-01),
  231. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4065325971552591874518959051023792039988975724799857556174546893312708093090950408097379122415555910759700350860143e-01),
  232. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0479001032225018383987632254151801744375665421383061189339065133963746321576289524167571627509311333949422518201492e-01),
  233. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.3092092629978553290700663189204286665071157211550707113605545146983997477964874928199170264504441995865872491871943e-02),
  234. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.2935322010529224963732008058969591993560811275746992267507430254711815787976075946156368168156289483493617134063245e-02),
  235. };
  236. return data;
  237. }
  238. };
  239. template <class T>
  240. class gauss_kronrod_detail<T, 21, 0>
  241. {
  242. public:
  243. static std::array<T, 11> const & abscissa()
  244. {
  245. static const std::array<T, 11> data = {
  246. 0.000000000e+00f,
  247. 1.488743390e-01f,
  248. 2.943928627e-01f,
  249. 4.333953941e-01f,
  250. 5.627571347e-01f,
  251. 6.794095683e-01f,
  252. 7.808177266e-01f,
  253. 8.650633667e-01f,
  254. 9.301574914e-01f,
  255. 9.739065285e-01f,
  256. 9.956571630e-01f,
  257. };
  258. return data;
  259. }
  260. static std::array<T, 11> const & weights()
  261. {
  262. static const std::array<T, 11> data = {
  263. 1.494455540e-01f,
  264. 1.477391049e-01f,
  265. 1.427759386e-01f,
  266. 1.347092173e-01f,
  267. 1.234919763e-01f,
  268. 1.093871588e-01f,
  269. 9.312545458e-02f,
  270. 7.503967481e-02f,
  271. 5.475589657e-02f,
  272. 3.255816231e-02f,
  273. 1.169463887e-02f,
  274. };
  275. return data;
  276. }
  277. };
  278. template <class T>
  279. class gauss_kronrod_detail<T, 21, 1>
  280. {
  281. public:
  282. static std::array<T, 11> const & abscissa()
  283. {
  284. static const std::array<T, 11> data = {
  285. 0.00000000000000000e+00,
  286. 1.48874338981631211e-01,
  287. 2.94392862701460198e-01,
  288. 4.33395394129247191e-01,
  289. 5.62757134668604683e-01,
  290. 6.79409568299024406e-01,
  291. 7.80817726586416897e-01,
  292. 8.65063366688984511e-01,
  293. 9.30157491355708226e-01,
  294. 9.73906528517171720e-01,
  295. 9.95657163025808081e-01,
  296. };
  297. return data;
  298. }
  299. static std::array<T, 11> const & weights()
  300. {
  301. static const std::array<T, 11> data = {
  302. 1.49445554002916906e-01,
  303. 1.47739104901338491e-01,
  304. 1.42775938577060081e-01,
  305. 1.34709217311473326e-01,
  306. 1.23491976262065851e-01,
  307. 1.09387158802297642e-01,
  308. 9.31254545836976055e-02,
  309. 7.50396748109199528e-02,
  310. 5.47558965743519960e-02,
  311. 3.25581623079647275e-02,
  312. 1.16946388673718743e-02,
  313. };
  314. return data;
  315. }
  316. };
  317. template <class T>
  318. class gauss_kronrod_detail<T, 21, 2>
  319. {
  320. public:
  321. static std::array<T, 11> const & abscissa()
  322. {
  323. static const std::array<T, 11> data = {
  324. 0.00000000000000000000000000000000000e+00L,
  325. 1.48874338981631210884826001129719985e-01L,
  326. 2.94392862701460198131126603103865566e-01L,
  327. 4.33395394129247190799265943165784162e-01L,
  328. 5.62757134668604683339000099272694141e-01L,
  329. 6.79409568299024406234327365114873576e-01L,
  330. 7.80817726586416897063717578345042377e-01L,
  331. 8.65063366688984510732096688423493049e-01L,
  332. 9.30157491355708226001207180059508346e-01L,
  333. 9.73906528517171720077964012084452053e-01L,
  334. 9.95657163025808080735527280689002848e-01L,
  335. };
  336. return data;
  337. }
  338. static std::array<T, 11> const & weights()
  339. {
  340. static const std::array<T, 11> data = {
  341. 1.49445554002916905664936468389821204e-01L,
  342. 1.47739104901338491374841515972068046e-01L,
  343. 1.42775938577060080797094273138717061e-01L,
  344. 1.34709217311473325928054001771706833e-01L,
  345. 1.23491976262065851077958109831074160e-01L,
  346. 1.09387158802297641899210590325804960e-01L,
  347. 9.31254545836976055350654650833663444e-02L,
  348. 7.50396748109199527670431409161900094e-02L,
  349. 5.47558965743519960313813002445801764e-02L,
  350. 3.25581623079647274788189724593897606e-02L,
  351. 1.16946388673718742780643960621920484e-02L,
  352. };
  353. return data;
  354. }
  355. };
  356. #ifdef BOOST_HAS_FLOAT128
  357. template <class T>
  358. class gauss_kronrod_detail<T, 21, 3>
  359. {
  360. public:
  361. static std::array<T, 11> const & abscissa()
  362. {
  363. static const std::array<T, 11> data = {
  364. 0.00000000000000000000000000000000000e+00Q,
  365. 1.48874338981631210884826001129719985e-01Q,
  366. 2.94392862701460198131126603103865566e-01Q,
  367. 4.33395394129247190799265943165784162e-01Q,
  368. 5.62757134668604683339000099272694141e-01Q,
  369. 6.79409568299024406234327365114873576e-01Q,
  370. 7.80817726586416897063717578345042377e-01Q,
  371. 8.65063366688984510732096688423493049e-01Q,
  372. 9.30157491355708226001207180059508346e-01Q,
  373. 9.73906528517171720077964012084452053e-01Q,
  374. 9.95657163025808080735527280689002848e-01Q,
  375. };
  376. return data;
  377. }
  378. static std::array<T, 11> const & weights()
  379. {
  380. static const std::array<T, 11> data = {
  381. 1.49445554002916905664936468389821204e-01Q,
  382. 1.47739104901338491374841515972068046e-01Q,
  383. 1.42775938577060080797094273138717061e-01Q,
  384. 1.34709217311473325928054001771706833e-01Q,
  385. 1.23491976262065851077958109831074160e-01Q,
  386. 1.09387158802297641899210590325804960e-01Q,
  387. 9.31254545836976055350654650833663444e-02Q,
  388. 7.50396748109199527670431409161900094e-02Q,
  389. 5.47558965743519960313813002445801764e-02Q,
  390. 3.25581623079647274788189724593897606e-02Q,
  391. 1.16946388673718742780643960621920484e-02Q,
  392. };
  393. return data;
  394. }
  395. };
  396. #endif
  397. template <class T>
  398. class gauss_kronrod_detail<T, 21, 4>
  399. {
  400. public:
  401. static std::array<T, 11> const & abscissa()
  402. {
  403. static std::array<T, 11> data = {
  404. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  405. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4887433898163121088482600112971998461756485942069169570798925351590361735566852137117762979946369123003116080525534e-01),
  406. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.9439286270146019813112660310386556616268662515695791864888229172724611166332737888445523178268237359119185139299872e-01),
  407. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.3339539412924719079926594316578416220007183765624649650270151314376698907770350122510275795011772122368293504099894e-01),
  408. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.6275713466860468333900009927269414084301388194196695886034621458779266353216327549712087854169992422106448211158815e-01),
  409. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.7940956829902440623432736511487357576929471183480946766481718895255857539507492461507857357048037949983390204739932e-01),
  410. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.8081772658641689706371757834504237716340752029815717974694859999505607982761420654526977234238996241110129779403362e-01),
  411. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.6506336668898451073209668842349304852754301496533045252195973184537475513805556135679072894604577069440463108641177e-01),
  412. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.3015749135570822600120718005950834622516790998193924230349406866828415983091673055011194572851007884702013619684320e-01),
  413. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.7390652851717172007796401208445205342826994669238211923121206669659520323463615962572356495626855625823304251877421e-01),
  414. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9565716302580808073552728068900284792126058721947892436337916111757023046774867357152325996912076724298149077812671e-01),
  415. };
  416. return data;
  417. }
  418. static std::array<T, 11> const & weights()
  419. {
  420. static std::array<T, 11> data = {
  421. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4944555400291690566493646838982120374523631668747280383560851873698964478511841925721030705689540264726493367634340e-01),
  422. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4773910490133849137484151597206804552373162548520660451819195439885993016735696405732703959182882254268727823258502e-01),
  423. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4277593857706008079709427313871706088597905653190555560741004743970770449909340027811131706283756428281146832304737e-01),
  424. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.3470921731147332592805400177170683276099191300855971406636668491320291400121282036676953159488271772384389604997640e-01),
  425. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.2349197626206585107795810983107415951230034952864832764467994120974054238975454689681538622363738230836484113389878e-01),
  426. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0938715880229764189921059032580496027181329983434522007819675829826550372891432168683899432674553842507906611591517e-01),
  427. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.3125454583697605535065465083366344390018828880760031970085038760177735672200775237414123061615827474831165614953012e-02),
  428. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.5039674810919952767043140916190009395219382000910088173697048048430404342858495178813808730646554086856929327903059e-02),
  429. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.4755896574351996031381300244580176373721114058333557524432615804784098927818975325116301569003298086458722055550981e-02),
  430. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.2558162307964727478818972459389760617388939845662609571537504232714121820165498692381607605384626494546068817765276e-02),
  431. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.1694638867371874278064396062192048396217332481931888927598147525622222058064992651806736704969967250888097490233242e-02),
  432. };
  433. return data;
  434. }
  435. };
  436. template <class T>
  437. class gauss_kronrod_detail<T, 31, 0>
  438. {
  439. public:
  440. static std::array<T, 16> const & abscissa()
  441. {
  442. static const std::array<T, 16> data = {
  443. 0.000000000e+00f,
  444. 1.011420669e-01f,
  445. 2.011940940e-01f,
  446. 2.991800072e-01f,
  447. 3.941513471e-01f,
  448. 4.850818636e-01f,
  449. 5.709721726e-01f,
  450. 6.509967413e-01f,
  451. 7.244177314e-01f,
  452. 7.904185014e-01f,
  453. 8.482065834e-01f,
  454. 8.972645323e-01f,
  455. 9.372733924e-01f,
  456. 9.677390757e-01f,
  457. 9.879925180e-01f,
  458. 9.980022987e-01f,
  459. };
  460. return data;
  461. }
  462. static std::array<T, 16> const & weights()
  463. {
  464. static const std::array<T, 16> data = {
  465. 1.013300070e-01f,
  466. 1.007698455e-01f,
  467. 9.917359872e-02f,
  468. 9.664272698e-02f,
  469. 9.312659817e-02f,
  470. 8.856444306e-02f,
  471. 8.308050282e-02f,
  472. 7.684968076e-02f,
  473. 6.985412132e-02f,
  474. 6.200956780e-02f,
  475. 5.348152469e-02f,
  476. 4.458975132e-02f,
  477. 3.534636079e-02f,
  478. 2.546084733e-02f,
  479. 1.500794733e-02f,
  480. 5.377479873e-03f,
  481. };
  482. return data;
  483. }
  484. };
  485. template <class T>
  486. class gauss_kronrod_detail<T, 31, 1>
  487. {
  488. public:
  489. static std::array<T, 16> const & abscissa()
  490. {
  491. static const std::array<T, 16> data = {
  492. 0.00000000000000000e+00,
  493. 1.01142066918717499e-01,
  494. 2.01194093997434522e-01,
  495. 2.99180007153168812e-01,
  496. 3.94151347077563370e-01,
  497. 4.85081863640239681e-01,
  498. 5.70972172608538848e-01,
  499. 6.50996741297416971e-01,
  500. 7.24417731360170047e-01,
  501. 7.90418501442465933e-01,
  502. 8.48206583410427216e-01,
  503. 8.97264532344081901e-01,
  504. 9.37273392400705904e-01,
  505. 9.67739075679139134e-01,
  506. 9.87992518020485428e-01,
  507. 9.98002298693397060e-01,
  508. };
  509. return data;
  510. }
  511. static std::array<T, 16> const & weights()
  512. {
  513. static const std::array<T, 16> data = {
  514. 1.01330007014791549e-01,
  515. 1.00769845523875595e-01,
  516. 9.91735987217919593e-02,
  517. 9.66427269836236785e-02,
  518. 9.31265981708253212e-02,
  519. 8.85644430562117706e-02,
  520. 8.30805028231330210e-02,
  521. 7.68496807577203789e-02,
  522. 6.98541213187282587e-02,
  523. 6.20095678006706403e-02,
  524. 5.34815246909280873e-02,
  525. 4.45897513247648766e-02,
  526. 3.53463607913758462e-02,
  527. 2.54608473267153202e-02,
  528. 1.50079473293161225e-02,
  529. 5.37747987292334899e-03,
  530. };
  531. return data;
  532. }
  533. };
  534. template <class T>
  535. class gauss_kronrod_detail<T, 31, 2>
  536. {
  537. public:
  538. static std::array<T, 16> const & abscissa()
  539. {
  540. static const std::array<T, 16> data = {
  541. 0.00000000000000000000000000000000000e+00L,
  542. 1.01142066918717499027074231447392339e-01L,
  543. 2.01194093997434522300628303394596208e-01L,
  544. 2.99180007153168812166780024266388963e-01L,
  545. 3.94151347077563369897207370981045468e-01L,
  546. 4.85081863640239680693655740232350613e-01L,
  547. 5.70972172608538847537226737253910641e-01L,
  548. 6.50996741297416970533735895313274693e-01L,
  549. 7.24417731360170047416186054613938010e-01L,
  550. 7.90418501442465932967649294817947347e-01L,
  551. 8.48206583410427216200648320774216851e-01L,
  552. 8.97264532344081900882509656454495883e-01L,
  553. 9.37273392400705904307758947710209471e-01L,
  554. 9.67739075679139134257347978784337225e-01L,
  555. 9.87992518020485428489565718586612581e-01L,
  556. 9.98002298693397060285172840152271209e-01L,
  557. };
  558. return data;
  559. }
  560. static std::array<T, 16> const & weights()
  561. {
  562. static const std::array<T, 16> data = {
  563. 1.01330007014791549017374792767492547e-01L,
  564. 1.00769845523875595044946662617569722e-01L,
  565. 9.91735987217919593323931734846031311e-02L,
  566. 9.66427269836236785051799076275893351e-02L,
  567. 9.31265981708253212254868727473457186e-02L,
  568. 8.85644430562117706472754436937743032e-02L,
  569. 8.30805028231330210382892472861037896e-02L,
  570. 7.68496807577203788944327774826590067e-02L,
  571. 6.98541213187282587095200770991474758e-02L,
  572. 6.20095678006706402851392309608029322e-02L,
  573. 5.34815246909280872653431472394302968e-02L,
  574. 4.45897513247648766082272993732796902e-02L,
  575. 3.53463607913758462220379484783600481e-02L,
  576. 2.54608473267153201868740010196533594e-02L,
  577. 1.50079473293161225383747630758072681e-02L,
  578. 5.37747987292334898779205143012764982e-03L,
  579. };
  580. return data;
  581. }
  582. };
  583. #ifdef BOOST_HAS_FLOAT128
  584. template <class T>
  585. class gauss_kronrod_detail<T, 31, 3>
  586. {
  587. public:
  588. static std::array<T, 16> const & abscissa()
  589. {
  590. static const std::array<T, 16> data = {
  591. 0.00000000000000000000000000000000000e+00Q,
  592. 1.01142066918717499027074231447392339e-01Q,
  593. 2.01194093997434522300628303394596208e-01Q,
  594. 2.99180007153168812166780024266388963e-01Q,
  595. 3.94151347077563369897207370981045468e-01Q,
  596. 4.85081863640239680693655740232350613e-01Q,
  597. 5.70972172608538847537226737253910641e-01Q,
  598. 6.50996741297416970533735895313274693e-01Q,
  599. 7.24417731360170047416186054613938010e-01Q,
  600. 7.90418501442465932967649294817947347e-01Q,
  601. 8.48206583410427216200648320774216851e-01Q,
  602. 8.97264532344081900882509656454495883e-01Q,
  603. 9.37273392400705904307758947710209471e-01Q,
  604. 9.67739075679139134257347978784337225e-01Q,
  605. 9.87992518020485428489565718586612581e-01Q,
  606. 9.98002298693397060285172840152271209e-01Q,
  607. };
  608. return data;
  609. }
  610. static std::array<T, 16> const & weights()
  611. {
  612. static const std::array<T, 16> data = {
  613. 1.01330007014791549017374792767492547e-01Q,
  614. 1.00769845523875595044946662617569722e-01Q,
  615. 9.91735987217919593323931734846031311e-02Q,
  616. 9.66427269836236785051799076275893351e-02Q,
  617. 9.31265981708253212254868727473457186e-02Q,
  618. 8.85644430562117706472754436937743032e-02Q,
  619. 8.30805028231330210382892472861037896e-02Q,
  620. 7.68496807577203788944327774826590067e-02Q,
  621. 6.98541213187282587095200770991474758e-02Q,
  622. 6.20095678006706402851392309608029322e-02Q,
  623. 5.34815246909280872653431472394302968e-02Q,
  624. 4.45897513247648766082272993732796902e-02Q,
  625. 3.53463607913758462220379484783600481e-02Q,
  626. 2.54608473267153201868740010196533594e-02Q,
  627. 1.50079473293161225383747630758072681e-02Q,
  628. 5.37747987292334898779205143012764982e-03Q,
  629. };
  630. return data;
  631. }
  632. };
  633. #endif
  634. template <class T>
  635. class gauss_kronrod_detail<T, 31, 4>
  636. {
  637. public:
  638. static std::array<T, 16> const & abscissa()
  639. {
  640. static std::array<T, 16> data = {
  641. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  642. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0114206691871749902707423144739233878745105740164180495800189504151097862454083050931321451540380998341273193681967e-01),
  643. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0119409399743452230062830339459620781283645446263767961594972460994823900302018760183625806752105908967902257386509e-01),
  644. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.9918000715316881216678002426638896266160338274382080184125545738918081102513884467602322020157243563662094470221235e-01),
  645. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.9415134707756336989720737098104546836275277615869825503116534395160895778696141797549711416165976202589352169635648e-01),
  646. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.8508186364023968069365574023235061286633893089407312129367943604080239955167155974371848690848595275551258416303565e-01),
  647. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.7097217260853884753722673725391064123838639628274960485326541705419537986975857948341462856982614477912646497026257e-01),
  648. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.5099674129741697053373589531327469254694822609259966708966160576093305841043840794460394747228060367236079289132544e-01),
  649. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.2441773136017004741618605461393800963089929458410256355142342070412378167792521899610109760313432626923598549381925e-01),
  650. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.9041850144246593296764929481794734686214051995697617332365280643308302974631807059994738664225445530963711137343440e-01),
  651. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.4820658341042721620064832077421685136625617473699263409572755876067507517414548519760771975082148085090373835713340e-01),
  652. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.9726453234408190088250965645449588283177871149442786763972687601078537721473771221195399661919716123038835639691946e-01),
  653. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.3727339240070590430775894771020947124399627351530445790136307635020297379704552795054758617426808659746824044603157e-01),
  654. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.6773907567913913425734797878433722528335733730013163797468062226335804249452174804319385048203118506304424717089291e-01),
  655. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.8799251802048542848956571858661258114697281712376148999999751558738843736901942471272205036831914497667516843990079e-01),
  656. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9800229869339706028517284015227120907340644231555723034839427970683348682837134566648979907760125278631896777136104e-01),
  657. };
  658. return data;
  659. }
  660. static std::array<T, 16> const & weights()
  661. {
  662. static std::array<T, 16> data = {
  663. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0133000701479154901737479276749254677092627259659629246734858372174107615774696665932418050683956749891773195816338e-01),
  664. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0076984552387559504494666261756972191634838013536373069278929029488122760822761077475060185965408326901925180106227e-01),
  665. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9173598721791959332393173484603131059567260816713281734860095693651563064308745717056680128223790739026832596087552e-02),
  666. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.6642726983623678505179907627589335136656568630495198973407668882934392359962841826511402504664592185391687490319950e-02),
  667. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.3126598170825321225486872747345718561927881321317330560285879189052002874531855060114908990458716740695847509343865e-02),
  668. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.8564443056211770647275443693774303212266732690655967817996052574877144544749814260718837576325109922207832119243346e-02),
  669. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.3080502823133021038289247286103789601554188253368717607281604875233630643885056057630789228337088859687986285569521e-02),
  670. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.6849680757720378894432777482659006722109101167947000584089097112470821092034084418224731527690291913686588446455555e-02),
  671. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.9854121318728258709520077099147475786045435140671549698798093177992675624987998849748628778570667518643649536771245e-02),
  672. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.2009567800670640285139230960802932190400004210329723569147829395618376206272317333030584268303808639229575334680414e-02),
  673. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.3481524690928087265343147239430296771554760947116739813222888752727413616259625439714812475198987513183153639571249e-02),
  674. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.4589751324764876608227299373279690223256649667921096570980823211805450700059906366455036418897149593261561551176267e-02),
  675. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.5346360791375846222037948478360048122630678992420820868148023340902501837247680978434662724296810081131106317333086e-02),
  676. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.5460847326715320186874001019653359397271745046864640508377984982400903447009185267605205778819712848080691366407461e-02),
  677. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.5007947329316122538374763075807268094639436437387634979291759700896494746154334398961710227490402528151677469993935e-02),
  678. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.3774798729233489877920514301276498183080402431284197876486169536848635554354599213793172596490038991436925569025913e-03),
  679. };
  680. return data;
  681. }
  682. };
  683. template <class T>
  684. class gauss_kronrod_detail<T, 41, 0>
  685. {
  686. public:
  687. static std::array<T, 21> const & abscissa()
  688. {
  689. static const std::array<T, 21> data = {
  690. 0.000000000e+00f,
  691. 7.652652113e-02f,
  692. 1.526054652e-01f,
  693. 2.277858511e-01f,
  694. 3.016278681e-01f,
  695. 3.737060887e-01f,
  696. 4.435931752e-01f,
  697. 5.108670020e-01f,
  698. 5.751404468e-01f,
  699. 6.360536807e-01f,
  700. 6.932376563e-01f,
  701. 7.463319065e-01f,
  702. 7.950414288e-01f,
  703. 8.391169718e-01f,
  704. 8.782768113e-01f,
  705. 9.122344283e-01f,
  706. 9.408226338e-01f,
  707. 9.639719273e-01f,
  708. 9.815078775e-01f,
  709. 9.931285992e-01f,
  710. 9.988590316e-01f,
  711. };
  712. return data;
  713. }
  714. static std::array<T, 21> const & weights()
  715. {
  716. static const std::array<T, 21> data = {
  717. 7.660071192e-02f,
  718. 7.637786767e-02f,
  719. 7.570449768e-02f,
  720. 7.458287540e-02f,
  721. 7.303069033e-02f,
  722. 7.105442355e-02f,
  723. 6.864867293e-02f,
  724. 6.583459713e-02f,
  725. 6.265323755e-02f,
  726. 5.911140088e-02f,
  727. 5.519510535e-02f,
  728. 5.094457392e-02f,
  729. 4.643482187e-02f,
  730. 4.166887333e-02f,
  731. 3.660016976e-02f,
  732. 3.128730678e-02f,
  733. 2.588213360e-02f,
  734. 2.038837346e-02f,
  735. 1.462616926e-02f,
  736. 8.600269856e-03f,
  737. 3.073583719e-03f,
  738. };
  739. return data;
  740. }
  741. };
  742. template <class T>
  743. class gauss_kronrod_detail<T, 41, 1>
  744. {
  745. public:
  746. static std::array<T, 21> const & abscissa()
  747. {
  748. static const std::array<T, 21> data = {
  749. 0.00000000000000000e+00,
  750. 7.65265211334973338e-02,
  751. 1.52605465240922676e-01,
  752. 2.27785851141645078e-01,
  753. 3.01627868114913004e-01,
  754. 3.73706088715419561e-01,
  755. 4.43593175238725103e-01,
  756. 5.10867001950827098e-01,
  757. 5.75140446819710315e-01,
  758. 6.36053680726515025e-01,
  759. 6.93237656334751385e-01,
  760. 7.46331906460150793e-01,
  761. 7.95041428837551198e-01,
  762. 8.39116971822218823e-01,
  763. 8.78276811252281976e-01,
  764. 9.12234428251325906e-01,
  765. 9.40822633831754754e-01,
  766. 9.63971927277913791e-01,
  767. 9.81507877450250259e-01,
  768. 9.93128599185094925e-01,
  769. 9.98859031588277664e-01,
  770. };
  771. return data;
  772. }
  773. static std::array<T, 21> const & weights()
  774. {
  775. static const std::array<T, 21> data = {
  776. 7.66007119179996564e-02,
  777. 7.63778676720807367e-02,
  778. 7.57044976845566747e-02,
  779. 7.45828754004991890e-02,
  780. 7.30306903327866675e-02,
  781. 7.10544235534440683e-02,
  782. 6.86486729285216193e-02,
  783. 6.58345971336184221e-02,
  784. 6.26532375547811680e-02,
  785. 5.91114008806395724e-02,
  786. 5.51951053482859947e-02,
  787. 5.09445739237286919e-02,
  788. 4.64348218674976747e-02,
  789. 4.16688733279736863e-02,
  790. 3.66001697582007980e-02,
  791. 3.12873067770327990e-02,
  792. 2.58821336049511588e-02,
  793. 2.03883734612665236e-02,
  794. 1.46261692569712530e-02,
  795. 8.60026985564294220e-03,
  796. 3.07358371852053150e-03,
  797. };
  798. return data;
  799. }
  800. };
  801. template <class T>
  802. class gauss_kronrod_detail<T, 41, 2>
  803. {
  804. public:
  805. static std::array<T, 21> const & abscissa()
  806. {
  807. static const std::array<T, 21> data = {
  808. 0.00000000000000000000000000000000000e+00L,
  809. 7.65265211334973337546404093988382110e-02L,
  810. 1.52605465240922675505220241022677528e-01L,
  811. 2.27785851141645078080496195368574625e-01L,
  812. 3.01627868114913004320555356858592261e-01L,
  813. 3.73706088715419560672548177024927237e-01L,
  814. 4.43593175238725103199992213492640108e-01L,
  815. 5.10867001950827098004364050955250998e-01L,
  816. 5.75140446819710315342946036586425133e-01L,
  817. 6.36053680726515025452836696226285937e-01L,
  818. 6.93237656334751384805490711845931533e-01L,
  819. 7.46331906460150792614305070355641590e-01L,
  820. 7.95041428837551198350638833272787943e-01L,
  821. 8.39116971822218823394529061701520685e-01L,
  822. 8.78276811252281976077442995113078467e-01L,
  823. 9.12234428251325905867752441203298113e-01L,
  824. 9.40822633831754753519982722212443380e-01L,
  825. 9.63971927277913791267666131197277222e-01L,
  826. 9.81507877450250259193342994720216945e-01L,
  827. 9.93128599185094924786122388471320278e-01L,
  828. 9.98859031588277663838315576545863010e-01L,
  829. };
  830. return data;
  831. }
  832. static std::array<T, 21> const & weights()
  833. {
  834. static const std::array<T, 21> data = {
  835. 7.66007119179996564450499015301017408e-02L,
  836. 7.63778676720807367055028350380610018e-02L,
  837. 7.57044976845566746595427753766165583e-02L,
  838. 7.45828754004991889865814183624875286e-02L,
  839. 7.30306903327866674951894176589131128e-02L,
  840. 7.10544235534440683057903617232101674e-02L,
  841. 6.86486729285216193456234118853678017e-02L,
  842. 6.58345971336184221115635569693979431e-02L,
  843. 6.26532375547811680258701221742549806e-02L,
  844. 5.91114008806395723749672206485942171e-02L,
  845. 5.51951053482859947448323724197773292e-02L,
  846. 5.09445739237286919327076700503449487e-02L,
  847. 4.64348218674976747202318809261075168e-02L,
  848. 4.16688733279736862637883059368947380e-02L,
  849. 3.66001697582007980305572407072110085e-02L,
  850. 3.12873067770327989585431193238007379e-02L,
  851. 2.58821336049511588345050670961531430e-02L,
  852. 2.03883734612665235980102314327547051e-02L,
  853. 1.46261692569712529837879603088683562e-02L,
  854. 8.60026985564294219866178795010234725e-03L,
  855. 3.07358371852053150121829324603098749e-03L,
  856. };
  857. return data;
  858. }
  859. };
  860. #ifdef BOOST_HAS_FLOAT128
  861. template <class T>
  862. class gauss_kronrod_detail<T, 41, 3>
  863. {
  864. public:
  865. static std::array<T, 21> const & abscissa()
  866. {
  867. static const std::array<T, 21> data = {
  868. 0.00000000000000000000000000000000000e+00Q,
  869. 7.65265211334973337546404093988382110e-02Q,
  870. 1.52605465240922675505220241022677528e-01Q,
  871. 2.27785851141645078080496195368574625e-01Q,
  872. 3.01627868114913004320555356858592261e-01Q,
  873. 3.73706088715419560672548177024927237e-01Q,
  874. 4.43593175238725103199992213492640108e-01Q,
  875. 5.10867001950827098004364050955250998e-01Q,
  876. 5.75140446819710315342946036586425133e-01Q,
  877. 6.36053680726515025452836696226285937e-01Q,
  878. 6.93237656334751384805490711845931533e-01Q,
  879. 7.46331906460150792614305070355641590e-01Q,
  880. 7.95041428837551198350638833272787943e-01Q,
  881. 8.39116971822218823394529061701520685e-01Q,
  882. 8.78276811252281976077442995113078467e-01Q,
  883. 9.12234428251325905867752441203298113e-01Q,
  884. 9.40822633831754753519982722212443380e-01Q,
  885. 9.63971927277913791267666131197277222e-01Q,
  886. 9.81507877450250259193342994720216945e-01Q,
  887. 9.93128599185094924786122388471320278e-01Q,
  888. 9.98859031588277663838315576545863010e-01Q,
  889. };
  890. return data;
  891. }
  892. static std::array<T, 21> const & weights()
  893. {
  894. static const std::array<T, 21> data = {
  895. 7.66007119179996564450499015301017408e-02Q,
  896. 7.63778676720807367055028350380610018e-02Q,
  897. 7.57044976845566746595427753766165583e-02Q,
  898. 7.45828754004991889865814183624875286e-02Q,
  899. 7.30306903327866674951894176589131128e-02Q,
  900. 7.10544235534440683057903617232101674e-02Q,
  901. 6.86486729285216193456234118853678017e-02Q,
  902. 6.58345971336184221115635569693979431e-02Q,
  903. 6.26532375547811680258701221742549806e-02Q,
  904. 5.91114008806395723749672206485942171e-02Q,
  905. 5.51951053482859947448323724197773292e-02Q,
  906. 5.09445739237286919327076700503449487e-02Q,
  907. 4.64348218674976747202318809261075168e-02Q,
  908. 4.16688733279736862637883059368947380e-02Q,
  909. 3.66001697582007980305572407072110085e-02Q,
  910. 3.12873067770327989585431193238007379e-02Q,
  911. 2.58821336049511588345050670961531430e-02Q,
  912. 2.03883734612665235980102314327547051e-02Q,
  913. 1.46261692569712529837879603088683562e-02Q,
  914. 8.60026985564294219866178795010234725e-03Q,
  915. 3.07358371852053150121829324603098749e-03Q,
  916. };
  917. return data;
  918. }
  919. };
  920. #endif
  921. template <class T>
  922. class gauss_kronrod_detail<T, 41, 4>
  923. {
  924. public:
  925. static std::array<T, 21> const & abscissa()
  926. {
  927. static std::array<T, 21> data = {
  928. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  929. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.6526521133497333754640409398838211004796266813497500804795244384256342048336978241545114181556215606998505646364133e-02),
  930. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.5260546524092267550522024102267752791167622481841730660174156703809133685751696356987995886397049724808931527012542e-01),
  931. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.2778585114164507808049619536857462474308893768292747231463573920717134186355582779495212519096870803177373131560430e-01),
  932. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0162786811491300432055535685859226061539650501373092456926374427956957435978384116066498234762220215751079886015902e-01),
  933. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.7370608871541956067254817702492723739574632170568271182794861351564576437305952789589568363453337894476772208852815e-01),
  934. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.4359317523872510319999221349264010784010101082300309613315028346299543059315258601993479156987847429893626854030516e-01),
  935. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.1086700195082709800436405095525099842549132920242683347234861989473497039076572814403168305086777919832943068843526e-01),
  936. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.7514044681971031534294603658642513281381264014771682537415885495717468074720062012357788489049470208285175093670561e-01),
  937. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.3605368072651502545283669622628593674338911679936846393944662254654126258543013255870319549576130658211710937772596e-01),
  938. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.9323765633475138480549071184593153338642585141021417904687378454301191710739219011546672416325022748282227809465165e-01),
  939. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.4633190646015079261430507035564159031073067956917644413954590606853535503815506468110411362064752061238490065167656e-01),
  940. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.9504142883755119835063883327278794295938959911578029703855163894322697871710382866701777890251824617748545658564370e-01),
  941. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.3911697182221882339452906170152068532962936506563737325249272553286109399932480991922934056595764922060422035306914e-01),
  942. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.7827681125228197607744299511307846671124526828251164853898086998248145904743220740840261624245683876748360309079747e-01),
  943. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.1223442825132590586775244120329811304918479742369177479588221915807089120871907893644472619292138737876039175464603e-01),
  944. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.4082263383175475351998272221244338027429557377965291059536839973186796006557571220888218676776618448841584569497535e-01),
  945. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.6397192727791379126766613119727722191206032780618885606353759389204158078438305698001812525596471563131043491596423e-01),
  946. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.8150787745025025919334299472021694456725093981023759869077533318793098857465723460898060491887511355706497739384103e-01),
  947. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9312859918509492478612238847132027822264713090165589614818413121798471762775378083944940249657220927472894034724419e-01),
  948. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9885903158827766383831557654586300999957020432629666866666860339324411793311982967839129772854179884971700274369367e-01),
  949. };
  950. return data;
  951. }
  952. static std::array<T, 21> const & weights()
  953. {
  954. static std::array<T, 21> data = {
  955. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.6600711917999656445049901530101740827932500628670118055485349620314721456712029449597396569857880493210849110825276e-02),
  956. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.6377867672080736705502835038061001800801036764945996714946431116936745542061941050008345047482501253320401746334511e-02),
  957. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.5704497684556674659542775376616558263363155900414326194855223272348838596099414841886740468379707283366777797425290e-02),
  958. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.4582875400499188986581418362487528616116493572092273080047040726969899567887364227664202642942357104526915332274625e-02),
  959. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.3030690332786667495189417658913112760626845234552742380174250771849743831660040966804802312464527721645765620253776e-02),
  960. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.1054423553444068305790361723210167412912159322210143921628270586407381879789525901086146473278095159807542174985045e-02),
  961. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.8648672928521619345623411885367801715489704958239860400434264173923806029589970941711224257967651039544669425313433e-02),
  962. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.5834597133618422111563556969397943147223506343381443709751749639944420314384296347503523810096842402960802728781816e-02),
  963. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.2653237554781168025870122174254980585819744698897886186553324157100424088919284503451596742588386343548162830898103e-02),
  964. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.9111400880639572374967220648594217136419365977042191748388047204015262840407696611508732839851952697839735487615776e-02),
  965. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.5195105348285994744832372419777329194753456228153116909812131213177827707884692917845453999535518818940813085110223e-02),
  966. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.0944573923728691932707670050344948664836365809262579747517140086119113476866735641054822574173198900379392130050979e-02),
  967. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.6434821867497674720231880926107516842127071007077929289994127933243222585938804392953931185146446072587020288747981e-02),
  968. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.1668873327973686263788305936894738043960843153010324860966353235271889596379726462208702081068715463576895020003842e-02),
  969. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.6600169758200798030557240707211008487453496747498001651070009441973280061489266074044986901436324295513243878212345e-02),
  970. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.1287306777032798958543119323800737887769280362813337359554598005322423266047996771926031069705049476071896145456496e-02),
  971. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.5882133604951158834505067096153142999479118048674944526997797755374306421629440393392427198869345793286369198147609e-02),
  972. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0388373461266523598010231432754705122838627940185929365371868214433006532030353671253640300679157504987977281782909e-02),
  973. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4626169256971252983787960308868356163881050162249770342103474631076960029748751959380482484308382288261238476948520e-02),
  974. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.6002698556429421986617879501023472521289227667077976622450602031426535362696437838448828009554532025301579670206091e-03),
  975. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0735837185205315012182932460309874880335046882543449198461628212114333665590378156706265241414469306987988292234740e-03),
  976. };
  977. return data;
  978. }
  979. };
  980. template <class T>
  981. class gauss_kronrod_detail<T, 51, 0>
  982. {
  983. public:
  984. static std::array<T, 26> const & abscissa()
  985. {
  986. static const std::array<T, 26> data = {
  987. 0.000000000e+00f,
  988. 6.154448301e-02f,
  989. 1.228646926e-01f,
  990. 1.837189394e-01f,
  991. 2.438668837e-01f,
  992. 3.030895389e-01f,
  993. 3.611723058e-01f,
  994. 4.178853822e-01f,
  995. 4.730027314e-01f,
  996. 5.263252843e-01f,
  997. 5.776629302e-01f,
  998. 6.268100990e-01f,
  999. 6.735663685e-01f,
  1000. 7.177664068e-01f,
  1001. 7.592592630e-01f,
  1002. 7.978737980e-01f,
  1003. 8.334426288e-01f,
  1004. 8.658470653e-01f,
  1005. 8.949919979e-01f,
  1006. 9.207471153e-01f,
  1007. 9.429745712e-01f,
  1008. 9.616149864e-01f,
  1009. 9.766639215e-01f,
  1010. 9.880357945e-01f,
  1011. 9.955569698e-01f,
  1012. 9.992621050e-01f,
  1013. };
  1014. return data;
  1015. }
  1016. static std::array<T, 26> const & weights()
  1017. {
  1018. static const std::array<T, 26> data = {
  1019. 6.158081807e-02f,
  1020. 6.147118987e-02f,
  1021. 6.112850972e-02f,
  1022. 6.053945538e-02f,
  1023. 5.972034032e-02f,
  1024. 5.868968002e-02f,
  1025. 5.743711636e-02f,
  1026. 5.595081122e-02f,
  1027. 5.425112989e-02f,
  1028. 5.236288581e-02f,
  1029. 5.027767908e-02f,
  1030. 4.798253714e-02f,
  1031. 4.550291305e-02f,
  1032. 4.287284502e-02f,
  1033. 4.008382550e-02f,
  1034. 3.711627148e-02f,
  1035. 3.400213027e-02f,
  1036. 3.079230017e-02f,
  1037. 2.747531759e-02f,
  1038. 2.400994561e-02f,
  1039. 2.043537115e-02f,
  1040. 1.684781771e-02f,
  1041. 1.323622920e-02f,
  1042. 9.473973386e-03f,
  1043. 5.561932135e-03f,
  1044. 1.987383892e-03f,
  1045. };
  1046. return data;
  1047. }
  1048. };
  1049. template <class T>
  1050. class gauss_kronrod_detail<T, 51, 1>
  1051. {
  1052. public:
  1053. static std::array<T, 26> const & abscissa()
  1054. {
  1055. static const std::array<T, 26> data = {
  1056. 0.00000000000000000e+00,
  1057. 6.15444830056850789e-02,
  1058. 1.22864692610710396e-01,
  1059. 1.83718939421048892e-01,
  1060. 2.43866883720988432e-01,
  1061. 3.03089538931107830e-01,
  1062. 3.61172305809387838e-01,
  1063. 4.17885382193037749e-01,
  1064. 4.73002731445714961e-01,
  1065. 5.26325284334719183e-01,
  1066. 5.77662930241222968e-01,
  1067. 6.26810099010317413e-01,
  1068. 6.73566368473468364e-01,
  1069. 7.17766406813084388e-01,
  1070. 7.59259263037357631e-01,
  1071. 7.97873797998500059e-01,
  1072. 8.33442628760834001e-01,
  1073. 8.65847065293275595e-01,
  1074. 8.94991997878275369e-01,
  1075. 9.20747115281701562e-01,
  1076. 9.42974571228974339e-01,
  1077. 9.61614986425842512e-01,
  1078. 9.76663921459517511e-01,
  1079. 9.88035794534077248e-01,
  1080. 9.95556969790498098e-01,
  1081. 9.99262104992609834e-01,
  1082. };
  1083. return data;
  1084. }
  1085. static std::array<T, 26> const & weights()
  1086. {
  1087. static const std::array<T, 26> data = {
  1088. 6.15808180678329351e-02,
  1089. 6.14711898714253167e-02,
  1090. 6.11285097170530483e-02,
  1091. 6.05394553760458629e-02,
  1092. 5.97203403241740600e-02,
  1093. 5.86896800223942080e-02,
  1094. 5.74371163615678329e-02,
  1095. 5.59508112204123173e-02,
  1096. 5.42511298885454901e-02,
  1097. 5.23628858064074759e-02,
  1098. 5.02776790807156720e-02,
  1099. 4.79825371388367139e-02,
  1100. 4.55029130499217889e-02,
  1101. 4.28728450201700495e-02,
  1102. 4.00838255040323821e-02,
  1103. 3.71162714834155436e-02,
  1104. 3.40021302743293378e-02,
  1105. 3.07923001673874889e-02,
  1106. 2.74753175878517378e-02,
  1107. 2.40099456069532162e-02,
  1108. 2.04353711458828355e-02,
  1109. 1.68478177091282982e-02,
  1110. 1.32362291955716748e-02,
  1111. 9.47397338617415161e-03,
  1112. 5.56193213535671376e-03,
  1113. 1.98738389233031593e-03,
  1114. };
  1115. return data;
  1116. }
  1117. };
  1118. template <class T>
  1119. class gauss_kronrod_detail<T, 51, 2>
  1120. {
  1121. public:
  1122. static std::array<T, 26> const & abscissa()
  1123. {
  1124. static const std::array<T, 26> data = {
  1125. 0.00000000000000000000000000000000000e+00L,
  1126. 6.15444830056850788865463923667966313e-02L,
  1127. 1.22864692610710396387359818808036806e-01L,
  1128. 1.83718939421048892015969888759528416e-01L,
  1129. 2.43866883720988432045190362797451586e-01L,
  1130. 3.03089538931107830167478909980339329e-01L,
  1131. 3.61172305809387837735821730127640667e-01L,
  1132. 4.17885382193037748851814394594572487e-01L,
  1133. 4.73002731445714960522182115009192041e-01L,
  1134. 5.26325284334719182599623778158010178e-01L,
  1135. 5.77662930241222967723689841612654067e-01L,
  1136. 6.26810099010317412788122681624517881e-01L,
  1137. 6.73566368473468364485120633247622176e-01L,
  1138. 7.17766406813084388186654079773297781e-01L,
  1139. 7.59259263037357630577282865204360976e-01L,
  1140. 7.97873797998500059410410904994306569e-01L,
  1141. 8.33442628760834001421021108693569569e-01L,
  1142. 8.65847065293275595448996969588340088e-01L,
  1143. 8.94991997878275368851042006782804954e-01L,
  1144. 9.20747115281701561746346084546330632e-01L,
  1145. 9.42974571228974339414011169658470532e-01L,
  1146. 9.61614986425842512418130033660167242e-01L,
  1147. 9.76663921459517511498315386479594068e-01L,
  1148. 9.88035794534077247637331014577406227e-01L,
  1149. 9.95556969790498097908784946893901617e-01L,
  1150. 9.99262104992609834193457486540340594e-01L,
  1151. };
  1152. return data;
  1153. }
  1154. static std::array<T, 26> const & weights()
  1155. {
  1156. static const std::array<T, 26> data = {
  1157. 6.15808180678329350787598242400645532e-02L,
  1158. 6.14711898714253166615441319652641776e-02L,
  1159. 6.11285097170530483058590304162927119e-02L,
  1160. 6.05394553760458629453602675175654272e-02L,
  1161. 5.97203403241740599790992919325618538e-02L,
  1162. 5.86896800223942079619741758567877641e-02L,
  1163. 5.74371163615678328535826939395064720e-02L,
  1164. 5.59508112204123173082406863827473468e-02L,
  1165. 5.42511298885454901445433704598756068e-02L,
  1166. 5.23628858064074758643667121378727149e-02L,
  1167. 5.02776790807156719633252594334400844e-02L,
  1168. 4.79825371388367139063922557569147550e-02L,
  1169. 4.55029130499217889098705847526603930e-02L,
  1170. 4.28728450201700494768957924394951611e-02L,
  1171. 4.00838255040323820748392844670756464e-02L,
  1172. 3.71162714834155435603306253676198760e-02L,
  1173. 3.40021302743293378367487952295512032e-02L,
  1174. 3.07923001673874888911090202152285856e-02L,
  1175. 2.74753175878517378029484555178110786e-02L,
  1176. 2.40099456069532162200924891648810814e-02L,
  1177. 2.04353711458828354565682922359389737e-02L,
  1178. 1.68478177091282982315166675363363158e-02L,
  1179. 1.32362291955716748136564058469762381e-02L,
  1180. 9.47397338617415160720771052365532387e-03L,
  1181. 5.56193213535671375804023690106552207e-03L,
  1182. 1.98738389233031592650785188284340989e-03L,
  1183. };
  1184. return data;
  1185. }
  1186. };
  1187. #ifdef BOOST_HAS_FLOAT128
  1188. template <class T>
  1189. class gauss_kronrod_detail<T, 51, 3>
  1190. {
  1191. public:
  1192. static std::array<T, 26> const & abscissa()
  1193. {
  1194. static const std::array<T, 26> data = {
  1195. 0.00000000000000000000000000000000000e+00Q,
  1196. 6.15444830056850788865463923667966313e-02Q,
  1197. 1.22864692610710396387359818808036806e-01Q,
  1198. 1.83718939421048892015969888759528416e-01Q,
  1199. 2.43866883720988432045190362797451586e-01Q,
  1200. 3.03089538931107830167478909980339329e-01Q,
  1201. 3.61172305809387837735821730127640667e-01Q,
  1202. 4.17885382193037748851814394594572487e-01Q,
  1203. 4.73002731445714960522182115009192041e-01Q,
  1204. 5.26325284334719182599623778158010178e-01Q,
  1205. 5.77662930241222967723689841612654067e-01Q,
  1206. 6.26810099010317412788122681624517881e-01Q,
  1207. 6.73566368473468364485120633247622176e-01Q,
  1208. 7.17766406813084388186654079773297781e-01Q,
  1209. 7.59259263037357630577282865204360976e-01Q,
  1210. 7.97873797998500059410410904994306569e-01Q,
  1211. 8.33442628760834001421021108693569569e-01Q,
  1212. 8.65847065293275595448996969588340088e-01Q,
  1213. 8.94991997878275368851042006782804954e-01Q,
  1214. 9.20747115281701561746346084546330632e-01Q,
  1215. 9.42974571228974339414011169658470532e-01Q,
  1216. 9.61614986425842512418130033660167242e-01Q,
  1217. 9.76663921459517511498315386479594068e-01Q,
  1218. 9.88035794534077247637331014577406227e-01Q,
  1219. 9.95556969790498097908784946893901617e-01Q,
  1220. 9.99262104992609834193457486540340594e-01Q,
  1221. };
  1222. return data;
  1223. }
  1224. static std::array<T, 26> const & weights()
  1225. {
  1226. static const std::array<T, 26> data = {
  1227. 6.15808180678329350787598242400645532e-02Q,
  1228. 6.14711898714253166615441319652641776e-02Q,
  1229. 6.11285097170530483058590304162927119e-02Q,
  1230. 6.05394553760458629453602675175654272e-02Q,
  1231. 5.97203403241740599790992919325618538e-02Q,
  1232. 5.86896800223942079619741758567877641e-02Q,
  1233. 5.74371163615678328535826939395064720e-02Q,
  1234. 5.59508112204123173082406863827473468e-02Q,
  1235. 5.42511298885454901445433704598756068e-02Q,
  1236. 5.23628858064074758643667121378727149e-02Q,
  1237. 5.02776790807156719633252594334400844e-02Q,
  1238. 4.79825371388367139063922557569147550e-02Q,
  1239. 4.55029130499217889098705847526603930e-02Q,
  1240. 4.28728450201700494768957924394951611e-02Q,
  1241. 4.00838255040323820748392844670756464e-02Q,
  1242. 3.71162714834155435603306253676198760e-02Q,
  1243. 3.40021302743293378367487952295512032e-02Q,
  1244. 3.07923001673874888911090202152285856e-02Q,
  1245. 2.74753175878517378029484555178110786e-02Q,
  1246. 2.40099456069532162200924891648810814e-02Q,
  1247. 2.04353711458828354565682922359389737e-02Q,
  1248. 1.68478177091282982315166675363363158e-02Q,
  1249. 1.32362291955716748136564058469762381e-02Q,
  1250. 9.47397338617415160720771052365532387e-03Q,
  1251. 5.56193213535671375804023690106552207e-03Q,
  1252. 1.98738389233031592650785188284340989e-03Q,
  1253. };
  1254. return data;
  1255. }
  1256. };
  1257. #endif
  1258. template <class T>
  1259. class gauss_kronrod_detail<T, 51, 4>
  1260. {
  1261. public:
  1262. static std::array<T, 26> const & abscissa()
  1263. {
  1264. static std::array<T, 26> data = {
  1265. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  1266. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.1544483005685078886546392366796631281724348039823545274305431751687279361558658545141048781022691067898008423227288e-02),
  1267. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.2286469261071039638735981880803680553220534604978373842389353789270883496885841582643884994633105537597765980412320e-01),
  1268. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.8371893942104889201596988875952841578528447834990555215034512653236752851109815617651867160645591242103823539931527e-01),
  1269. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.4386688372098843204519036279745158640563315632598447642113565325038747278585595067977636776325034060327548499765742e-01),
  1270. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0308953893110783016747890998033932920041937876655194685731578452573120372337209717349617882111662416355753711853559e-01),
  1271. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.6117230580938783773582173012764066742207834704337506979457877784674538239569654860329531506093761400789294612122812e-01),
  1272. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.1788538219303774885181439459457248709336998140069528034955785068796932076966599548717224205109797297615032607570119e-01),
  1273. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.7300273144571496052218211500919204133181773846162729090723082769560327584128603010315684778279363544192787010704498e-01),
  1274. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.2632528433471918259962377815801017803683252320191114313002425180471455022502695302371008520604638341970901082293650e-01),
  1275. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.7766293024122296772368984161265406739573503929151825664548350776102301275263202227671659646579649084013116066120581e-01),
  1276. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.2681009901031741278812268162451788101954628995068510806525222008437260184181183053045236423845198752346149030569920e-01),
  1277. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.7356636847346836448512063324762217588341672807274931705965696177828773684928421158196368568030932194044282149314388e-01),
  1278. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.1776640681308438818665407977329778059771167555515582423493486823991612820974965089522905953765860328116692570706602e-01),
  1279. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.5925926303735763057728286520436097638752201889833412091838973544501862882026240760763679724185230331463919586229073e-01),
  1280. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.9787379799850005941041090499430656940863230009338267661706934499488650817643824077118950314443984031474353711531825e-01),
  1281. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.3344262876083400142102110869356956946096411382352078602086471546171813247709012525322973947759168107133491065937347e-01),
  1282. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.6584706529327559544899696958834008820284409402823690293965213246691432948180280120756708738064779055576005302835351e-01),
  1283. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.9499199787827536885104200678280495417455484975358390306170168295917151090119945137118600693039178162093726882638296e-01),
  1284. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.2074711528170156174634608454633063157457035996277199700642836501131385042631212407808952281702820179915510491592339e-01),
  1285. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.4297457122897433941401116965847053190520157060899014192745249713729532254404926130890521815127348327109666786665572e-01),
  1286. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.6161498642584251241813003366016724169212642963709676666624520141292893281185666917636407790823210892689040877316178e-01),
  1287. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.7666392145951751149831538647959406774537055531440674467098742731616386753588055389644670948300617866819865983054648e-01),
  1288. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.8803579453407724763733101457740622707248415209160748131449972199405186821347293686245404742032360498210710718706868e-01),
  1289. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9555696979049809790878494689390161725756264940480817121080493113293348134372793448728802635294700756868258870429256e-01),
  1290. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9926210499260983419345748654034059370452496042279618586228697762904524428167719073818746102238075978747461480736921e-01),
  1291. };
  1292. return data;
  1293. }
  1294. static std::array<T, 26> const & weights()
  1295. {
  1296. static std::array<T, 26> data = {
  1297. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.1580818067832935078759824240064553190436936903140808056908996403358367244202623293256774502185186717703954810463664e-02),
  1298. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.1471189871425316661544131965264177586537962876885022711111683500151700796198726558483367566537422877227096643444043e-02),
  1299. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.1128509717053048305859030416292711922678552321960938357322028070390133769952032831204895569347757809858568165047769e-02),
  1300. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.0539455376045862945360267517565427162312365710457079923487043144554747810689514408013582515489930908693681447570811e-02),
  1301. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.9720340324174059979099291932561853835363045476189975483372207816149988460708299020779612375010639778624011960832019e-02),
  1302. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.8689680022394207961974175856787764139795646254828315293243700305012569486054157617049685031506591863121580010947248e-02),
  1303. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.7437116361567832853582693939506471994832856823896682976509412313367495727224381199978598247737089593472710899482737e-02),
  1304. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.5950811220412317308240686382747346820271035112771802428932791066115158268338607019365831655460314732208940609352540e-02),
  1305. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.4251129888545490144543370459875606826076838441263383072163293312936923476650934130242315028422047795830492882862973e-02),
  1306. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.2362885806407475864366712137872714887351550723707596350905793656046659248541276597504566497990926306481919129870507e-02),
  1307. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.0277679080715671963325259433440084440587630604775975142050968279743014641141402310302584542633557037153607386127936e-02),
  1308. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.7982537138836713906392255756914754983592207423271169651235865196757913880334117810235517477328110033499422471098658e-02),
  1309. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.5502913049921788909870584752660393043707768935695327316724254392794299567957035458208970599641697203261236226745020e-02),
  1310. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.2872845020170049476895792439495161101999504199883328877919242515738957655253932048951366960802592343905647433925806e-02),
  1311. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.0083825504032382074839284467075646401410549266591308713115878386835777315058451955614116158949614066927183232852042e-02),
  1312. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.7116271483415543560330625367619875995997802688047764805628702762773009669395760582294525748583875707140577080663373e-02),
  1313. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.4002130274329337836748795229551203225670528250050443083264193121524339063344855010257660547708022429300203676502386e-02),
  1314. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0792300167387488891109020215228585600877162393292487644544830559965388047996492709248618249084851477787538356572832e-02),
  1315. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.7475317587851737802948455517811078614796013288710603199613621069727810352835469926107822047433566792405123805901196e-02),
  1316. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.4009945606953216220092489164881081392931528209659330290734972342536012282191913069778658241972047765300060007037359e-02),
  1317. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0435371145882835456568292235938973678758006097668937220074531550163622566841885855957623103354443247806459277197725e-02),
  1318. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.6847817709128298231516667536336315840402654624706139411175769276842182270078960078544597372646532637619276509222462e-02),
  1319. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.3236229195571674813656405846976238077578084997863654732213860488560614587634395544002156258192582265590155862296710e-02),
  1320. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.4739733861741516072077105236553238716453268483726334971394029603529306140359023187904705754719643032594360138998941e-03),
  1321. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.5619321353567137580402369010655220701769295496290984052961210793810038857581724171021610100708799763006942755331129e-03),
  1322. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.9873838923303159265078518828434098894299804282505973837653346298985629336820118753523093675303476883723992297810124e-03),
  1323. };
  1324. return data;
  1325. }
  1326. };
  1327. template <class T>
  1328. class gauss_kronrod_detail<T, 61, 0>
  1329. {
  1330. public:
  1331. static std::array<T, 31> const & abscissa()
  1332. {
  1333. static const std::array<T, 31> data = {
  1334. 0.000000000e+00f,
  1335. 5.147184256e-02f,
  1336. 1.028069380e-01f,
  1337. 1.538699136e-01f,
  1338. 2.045251167e-01f,
  1339. 2.546369262e-01f,
  1340. 3.040732023e-01f,
  1341. 3.527047255e-01f,
  1342. 4.004012548e-01f,
  1343. 4.470337695e-01f,
  1344. 4.924804679e-01f,
  1345. 5.366241481e-01f,
  1346. 5.793452358e-01f,
  1347. 6.205261830e-01f,
  1348. 6.600610641e-01f,
  1349. 6.978504948e-01f,
  1350. 7.337900625e-01f,
  1351. 7.677774321e-01f,
  1352. 7.997278358e-01f,
  1353. 8.295657624e-01f,
  1354. 8.572052335e-01f,
  1355. 8.825605358e-01f,
  1356. 9.055733077e-01f,
  1357. 9.262000474e-01f,
  1358. 9.443744447e-01f,
  1359. 9.600218650e-01f,
  1360. 9.731163225e-01f,
  1361. 9.836681233e-01f,
  1362. 9.916309969e-01f,
  1363. 9.968934841e-01f,
  1364. 9.994844101e-01f,
  1365. };
  1366. return data;
  1367. }
  1368. static std::array<T, 31> const & weights()
  1369. {
  1370. static const std::array<T, 31> data = {
  1371. 5.149472943e-02f,
  1372. 5.142612854e-02f,
  1373. 5.122154785e-02f,
  1374. 5.088179590e-02f,
  1375. 5.040592140e-02f,
  1376. 4.979568343e-02f,
  1377. 4.905543456e-02f,
  1378. 4.818586176e-02f,
  1379. 4.718554657e-02f,
  1380. 4.605923827e-02f,
  1381. 4.481480013e-02f,
  1382. 4.345253970e-02f,
  1383. 4.196981022e-02f,
  1384. 4.037453895e-02f,
  1385. 3.867894562e-02f,
  1386. 3.688236465e-02f,
  1387. 3.497933803e-02f,
  1388. 3.298144706e-02f,
  1389. 3.090725756e-02f,
  1390. 2.875404877e-02f,
  1391. 2.650995488e-02f,
  1392. 2.419116208e-02f,
  1393. 2.182803582e-02f,
  1394. 1.941414119e-02f,
  1395. 1.692088919e-02f,
  1396. 1.436972951e-02f,
  1397. 1.182301525e-02f,
  1398. 9.273279660e-03f,
  1399. 6.630703916e-03f,
  1400. 3.890461127e-03f,
  1401. 1.389013699e-03f,
  1402. };
  1403. return data;
  1404. }
  1405. };
  1406. template <class T>
  1407. class gauss_kronrod_detail<T, 61, 1>
  1408. {
  1409. public:
  1410. static std::array<T, 31> const & abscissa()
  1411. {
  1412. static const std::array<T, 31> data = {
  1413. 0.00000000000000000e+00,
  1414. 5.14718425553176958e-02,
  1415. 1.02806937966737030e-01,
  1416. 1.53869913608583547e-01,
  1417. 2.04525116682309891e-01,
  1418. 2.54636926167889846e-01,
  1419. 3.04073202273625077e-01,
  1420. 3.52704725530878113e-01,
  1421. 4.00401254830394393e-01,
  1422. 4.47033769538089177e-01,
  1423. 4.92480467861778575e-01,
  1424. 5.36624148142019899e-01,
  1425. 5.79345235826361692e-01,
  1426. 6.20526182989242861e-01,
  1427. 6.60061064126626961e-01,
  1428. 6.97850494793315797e-01,
  1429. 7.33790062453226805e-01,
  1430. 7.67777432104826195e-01,
  1431. 7.99727835821839083e-01,
  1432. 8.29565762382768397e-01,
  1433. 8.57205233546061099e-01,
  1434. 8.82560535792052682e-01,
  1435. 9.05573307699907799e-01,
  1436. 9.26200047429274326e-01,
  1437. 9.44374444748559979e-01,
  1438. 9.60021864968307512e-01,
  1439. 9.73116322501126268e-01,
  1440. 9.83668123279747210e-01,
  1441. 9.91630996870404595e-01,
  1442. 9.96893484074649540e-01,
  1443. 9.99484410050490638e-01,
  1444. };
  1445. return data;
  1446. }
  1447. static std::array<T, 31> const & weights()
  1448. {
  1449. static const std::array<T, 31> data = {
  1450. 5.14947294294515676e-02,
  1451. 5.14261285374590259e-02,
  1452. 5.12215478492587722e-02,
  1453. 5.08817958987496065e-02,
  1454. 5.04059214027823468e-02,
  1455. 4.97956834270742064e-02,
  1456. 4.90554345550297789e-02,
  1457. 4.81858617570871291e-02,
  1458. 4.71855465692991539e-02,
  1459. 4.60592382710069881e-02,
  1460. 4.48148001331626632e-02,
  1461. 4.34525397013560693e-02,
  1462. 4.19698102151642461e-02,
  1463. 4.03745389515359591e-02,
  1464. 3.86789456247275930e-02,
  1465. 3.68823646518212292e-02,
  1466. 3.49793380280600241e-02,
  1467. 3.29814470574837260e-02,
  1468. 3.09072575623877625e-02,
  1469. 2.87540487650412928e-02,
  1470. 2.65099548823331016e-02,
  1471. 2.41911620780806014e-02,
  1472. 2.18280358216091923e-02,
  1473. 1.94141411939423812e-02,
  1474. 1.69208891890532726e-02,
  1475. 1.43697295070458048e-02,
  1476. 1.18230152534963417e-02,
  1477. 9.27327965951776343e-03,
  1478. 6.63070391593129217e-03,
  1479. 3.89046112709988405e-03,
  1480. 1.38901369867700762e-03,
  1481. };
  1482. return data;
  1483. }
  1484. };
  1485. template <class T>
  1486. class gauss_kronrod_detail<T, 61, 2>
  1487. {
  1488. public:
  1489. static std::array<T, 31> const & abscissa()
  1490. {
  1491. static const std::array<T, 31> data = {
  1492. 0.00000000000000000000000000000000000e+00L,
  1493. 5.14718425553176958330252131667225737e-02L,
  1494. 1.02806937966737030147096751318000592e-01L,
  1495. 1.53869913608583546963794672743255920e-01L,
  1496. 2.04525116682309891438957671002024710e-01L,
  1497. 2.54636926167889846439805129817805108e-01L,
  1498. 3.04073202273625077372677107199256554e-01L,
  1499. 3.52704725530878113471037207089373861e-01L,
  1500. 4.00401254830394392535476211542660634e-01L,
  1501. 4.47033769538089176780609900322854000e-01L,
  1502. 4.92480467861778574993693061207708796e-01L,
  1503. 5.36624148142019899264169793311072794e-01L,
  1504. 5.79345235826361691756024932172540496e-01L,
  1505. 6.20526182989242861140477556431189299e-01L,
  1506. 6.60061064126626961370053668149270753e-01L,
  1507. 6.97850494793315796932292388026640068e-01L,
  1508. 7.33790062453226804726171131369527646e-01L,
  1509. 7.67777432104826194917977340974503132e-01L,
  1510. 7.99727835821839083013668942322683241e-01L,
  1511. 8.29565762382768397442898119732501916e-01L,
  1512. 8.57205233546061098958658510658943857e-01L,
  1513. 8.82560535792052681543116462530225590e-01L,
  1514. 9.05573307699907798546522558925958320e-01L,
  1515. 9.26200047429274325879324277080474004e-01L,
  1516. 9.44374444748559979415831324037439122e-01L,
  1517. 9.60021864968307512216871025581797663e-01L,
  1518. 9.73116322501126268374693868423706885e-01L,
  1519. 9.83668123279747209970032581605662802e-01L,
  1520. 9.91630996870404594858628366109485725e-01L,
  1521. 9.96893484074649540271630050918695283e-01L,
  1522. 9.99484410050490637571325895705810819e-01L,
  1523. };
  1524. return data;
  1525. }
  1526. static std::array<T, 31> const & weights()
  1527. {
  1528. static const std::array<T, 31> data = {
  1529. 5.14947294294515675583404336470993075e-02L,
  1530. 5.14261285374590259338628792157812598e-02L,
  1531. 5.12215478492587721706562826049442083e-02L,
  1532. 5.08817958987496064922974730498046919e-02L,
  1533. 5.04059214027823468408930856535850289e-02L,
  1534. 4.97956834270742063578115693799423285e-02L,
  1535. 4.90554345550297788875281653672381736e-02L,
  1536. 4.81858617570871291407794922983045926e-02L,
  1537. 4.71855465692991539452614781810994865e-02L,
  1538. 4.60592382710069881162717355593735806e-02L,
  1539. 4.48148001331626631923555516167232438e-02L,
  1540. 4.34525397013560693168317281170732581e-02L,
  1541. 4.19698102151642461471475412859697578e-02L,
  1542. 4.03745389515359591119952797524681142e-02L,
  1543. 3.86789456247275929503486515322810503e-02L,
  1544. 3.68823646518212292239110656171359677e-02L,
  1545. 3.49793380280600241374996707314678751e-02L,
  1546. 3.29814470574837260318141910168539275e-02L,
  1547. 3.09072575623877624728842529430922726e-02L,
  1548. 2.87540487650412928439787853543342111e-02L,
  1549. 2.65099548823331016106017093350754144e-02L,
  1550. 2.41911620780806013656863707252320268e-02L,
  1551. 2.18280358216091922971674857383389934e-02L,
  1552. 1.94141411939423811734089510501284559e-02L,
  1553. 1.69208891890532726275722894203220924e-02L,
  1554. 1.43697295070458048124514324435800102e-02L,
  1555. 1.18230152534963417422328988532505929e-02L,
  1556. 9.27327965951776342844114689202436042e-03L,
  1557. 6.63070391593129217331982636975016813e-03L,
  1558. 3.89046112709988405126720184451550328e-03L,
  1559. 1.38901369867700762455159122675969968e-03L,
  1560. };
  1561. return data;
  1562. }
  1563. };
  1564. #ifdef BOOST_HAS_FLOAT128
  1565. template <class T>
  1566. class gauss_kronrod_detail<T, 61, 3>
  1567. {
  1568. public:
  1569. static std::array<T, 31> const & abscissa()
  1570. {
  1571. static const std::array<T, 31> data = {
  1572. 0.00000000000000000000000000000000000e+00Q,
  1573. 5.14718425553176958330252131667225737e-02Q,
  1574. 1.02806937966737030147096751318000592e-01Q,
  1575. 1.53869913608583546963794672743255920e-01Q,
  1576. 2.04525116682309891438957671002024710e-01Q,
  1577. 2.54636926167889846439805129817805108e-01Q,
  1578. 3.04073202273625077372677107199256554e-01Q,
  1579. 3.52704725530878113471037207089373861e-01Q,
  1580. 4.00401254830394392535476211542660634e-01Q,
  1581. 4.47033769538089176780609900322854000e-01Q,
  1582. 4.92480467861778574993693061207708796e-01Q,
  1583. 5.36624148142019899264169793311072794e-01Q,
  1584. 5.79345235826361691756024932172540496e-01Q,
  1585. 6.20526182989242861140477556431189299e-01Q,
  1586. 6.60061064126626961370053668149270753e-01Q,
  1587. 6.97850494793315796932292388026640068e-01Q,
  1588. 7.33790062453226804726171131369527646e-01Q,
  1589. 7.67777432104826194917977340974503132e-01Q,
  1590. 7.99727835821839083013668942322683241e-01Q,
  1591. 8.29565762382768397442898119732501916e-01Q,
  1592. 8.57205233546061098958658510658943857e-01Q,
  1593. 8.82560535792052681543116462530225590e-01Q,
  1594. 9.05573307699907798546522558925958320e-01Q,
  1595. 9.26200047429274325879324277080474004e-01Q,
  1596. 9.44374444748559979415831324037439122e-01Q,
  1597. 9.60021864968307512216871025581797663e-01Q,
  1598. 9.73116322501126268374693868423706885e-01Q,
  1599. 9.83668123279747209970032581605662802e-01Q,
  1600. 9.91630996870404594858628366109485725e-01Q,
  1601. 9.96893484074649540271630050918695283e-01Q,
  1602. 9.99484410050490637571325895705810819e-01Q,
  1603. };
  1604. return data;
  1605. }
  1606. static std::array<T, 31> const & weights()
  1607. {
  1608. static const std::array<T, 31> data = {
  1609. 5.14947294294515675583404336470993075e-02Q,
  1610. 5.14261285374590259338628792157812598e-02Q,
  1611. 5.12215478492587721706562826049442083e-02Q,
  1612. 5.08817958987496064922974730498046919e-02Q,
  1613. 5.04059214027823468408930856535850289e-02Q,
  1614. 4.97956834270742063578115693799423285e-02Q,
  1615. 4.90554345550297788875281653672381736e-02Q,
  1616. 4.81858617570871291407794922983045926e-02Q,
  1617. 4.71855465692991539452614781810994865e-02Q,
  1618. 4.60592382710069881162717355593735806e-02Q,
  1619. 4.48148001331626631923555516167232438e-02Q,
  1620. 4.34525397013560693168317281170732581e-02Q,
  1621. 4.19698102151642461471475412859697578e-02Q,
  1622. 4.03745389515359591119952797524681142e-02Q,
  1623. 3.86789456247275929503486515322810503e-02Q,
  1624. 3.68823646518212292239110656171359677e-02Q,
  1625. 3.49793380280600241374996707314678751e-02Q,
  1626. 3.29814470574837260318141910168539275e-02Q,
  1627. 3.09072575623877624728842529430922726e-02Q,
  1628. 2.87540487650412928439787853543342111e-02Q,
  1629. 2.65099548823331016106017093350754144e-02Q,
  1630. 2.41911620780806013656863707252320268e-02Q,
  1631. 2.18280358216091922971674857383389934e-02Q,
  1632. 1.94141411939423811734089510501284559e-02Q,
  1633. 1.69208891890532726275722894203220924e-02Q,
  1634. 1.43697295070458048124514324435800102e-02Q,
  1635. 1.18230152534963417422328988532505929e-02Q,
  1636. 9.27327965951776342844114689202436042e-03Q,
  1637. 6.63070391593129217331982636975016813e-03Q,
  1638. 3.89046112709988405126720184451550328e-03Q,
  1639. 1.38901369867700762455159122675969968e-03Q,
  1640. };
  1641. return data;
  1642. }
  1643. };
  1644. #endif
  1645. template <class T>
  1646. class gauss_kronrod_detail<T, 61, 4>
  1647. {
  1648. public:
  1649. static std::array<T, 31> const & abscissa()
  1650. {
  1651. static std::array<T, 31> data = {
  1652. BOOST_MATH_HUGE_CONSTANT(T, 0, 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e+00),
  1653. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.1471842555317695833025213166722573749141453666569564255160843987964755210427109055870090707285485841217089963590678e-02),
  1654. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.0280693796673703014709675131800059247190133296515840552101946914632788253917872738234797140786490207720254922664913e-01),
  1655. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.5386991360858354696379467274325592041855197124433846171896298291578714851081610139692310651074078557990111754952062e-01),
  1656. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.0452511668230989143895767100202470952410426459556377447604465028350321894663245495592565235317147819577892124850607e-01),
  1657. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.5463692616788984643980512981780510788278930330251842616428597508896353156907880290636628138423620257595521678255758e-01),
  1658. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0407320227362507737267710719925655353115778980946272844421536998312150442387767304001423699909778588529370119457430e-01),
  1659. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.5270472553087811347103720708937386065363100802142562659418446890026941623319107866436039675211352945165817827083104e-01),
  1660. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.0040125483039439253547621154266063361104593297078395983186610656429170689311759061175527015710247383961903284673474e-01),
  1661. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.4703376953808917678060990032285400016240759386142440975447738172761535172858420700400688872124189834257262048739699e-01),
  1662. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.9248046786177857499369306120770879564426564096318697026073340982988422546396352776837047452262025983265531109327026e-01),
  1663. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.3662414814201989926416979331107279416417800693029710545274348291201490861897837863114116009718990258091585830703557e-01),
  1664. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.7934523582636169175602493217254049590705158881215289208126016612312833567812241903809970751783808208940322061083509e-01),
  1665. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.2052618298924286114047755643118929920736469282952813259505117012433531497488911774115258445532782106478789996137481e-01),
  1666. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.6006106412662696137005366814927075303835037480883390955067197339904937499734522076788020517029688190998858739703079e-01),
  1667. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.9785049479331579693229238802664006838235380065395465637972284673997672124315996069538163644008904690545069439941341e-01),
  1668. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.3379006245322680472617113136952764566938172775468549208701399518300016463613325382024664531597318795933262446521430e-01),
  1669. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.6777743210482619491797734097450313169488361723290845320649438736515857017299504505260960258623968420224697596501719e-01),
  1670. BOOST_MATH_HUGE_CONSTANT(T, 0, 7.9972783582183908301366894232268324073569842937778450923647349548686662567326007229195202524185356472023967927713548e-01),
  1671. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.2956576238276839744289811973250191643906869617034167880695298345365650658958163508295244350814016004371545455777732e-01),
  1672. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.5720523354606109895865851065894385682080017062359612850504551739119887225712932688031120704657195642614071367390794e-01),
  1673. BOOST_MATH_HUGE_CONSTANT(T, 0, 8.8256053579205268154311646253022559005668914714648423206832605312161626269519165572921583828573210485349058106849548e-01),
  1674. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.0557330769990779854652255892595831956897536366222841356404766397803760239449631913585074426842574155323901785046522e-01),
  1675. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.2620004742927432587932427708047400408647453682532906091103713367942299565110232681677288015055886244486106298320068e-01),
  1676. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.4437444474855997941583132403743912158564371496498093181748940139520917000657342753448871376849848523800667868447591e-01),
  1677. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.6002186496830751221687102558179766293035921740392339948566167242493995770706842922718944370380002378239172677454384e-01),
  1678. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.7311632250112626837469386842370688488763796428343933853755850185624118958166838288308561708261486365954975485787212e-01),
  1679. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.8366812327974720997003258160566280194031785470971136351718001015114429536479104370207597166035471368057762560137209e-01),
  1680. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9163099687040459485862836610948572485050033374616325510019923349807489603260796605556191495843575227494654783755353e-01),
  1681. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9689348407464954027163005091869528334088203811775079010809429780238769521016374081588201955806171741257405095963817e-01),
  1682. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.9948441005049063757132589570581081946887394701850801923632642830748016674843587830656468823145435723317885056396548e-01),
  1683. };
  1684. return data;
  1685. }
  1686. static std::array<T, 31> const & weights()
  1687. {
  1688. static std::array<T, 31> data = {
  1689. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.1494729429451567558340433647099307532736880396464168074637323362474083844397567724480716864880173808112573901197920e-02),
  1690. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.1426128537459025933862879215781259829552034862395987263855824172761589259406892072066110681184224608133314131500422e-02),
  1691. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.1221547849258772170656282604944208251146952425246327553509056805511015401279553971190412722969308620984161625812560e-02),
  1692. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.0881795898749606492297473049804691853384914260919239920771942080972542646780575571132056254070929858650733836163479e-02),
  1693. BOOST_MATH_HUGE_CONSTANT(T, 0, 5.0405921402782346840893085653585028902197018251622233664243959211066713308635283713447747907973700791599900911248852e-02),
  1694. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.9795683427074206357811569379942328539209602813696108951047392842948482646220377655098341924089250200477846596263918e-02),
  1695. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.9055434555029778887528165367238173605887405295296569579490717901328215644590555247522873065246297467067324397612445e-02),
  1696. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.8185861757087129140779492298304592605799236108429800057373350872433793583969368428942672063270298939865425225579922e-02),
  1697. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.7185546569299153945261478181099486482884807300628457194141861551725533289490897029020276525603515502104799540544222e-02),
  1698. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.6059238271006988116271735559373580594692875571824924004732379492293604006446052672252973438978639166425766841417488e-02),
  1699. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.4814800133162663192355551616723243757431392796373009889680201194063503947907899189061064792111919040540351834527742e-02),
  1700. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.3452539701356069316831728117073258074603308631703168064888805495738640839573863333942084117196541456054957383622173e-02),
  1701. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.1969810215164246147147541285969757790088656718992374820388720323852655511200365790379948462006156953358103259681948e-02),
  1702. BOOST_MATH_HUGE_CONSTANT(T, 0, 4.0374538951535959111995279752468114216126062126030255633998289613810846761059740961836828802959573901107306640876603e-02),
  1703. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.8678945624727592950348651532281050250923629821553846790376130679337402056620700554139109487533759557982632153728099e-02),
  1704. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.6882364651821229223911065617135967736955164781030337670005198584196134970154169862584193360751243227989492571664973e-02),
  1705. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.4979338028060024137499670731467875097226912794818719972208457232177786702008744219498470603846784465175225933802357e-02),
  1706. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.2981447057483726031814191016853927510599291213858385714519347641452316582381008804994515341969205985818543200837577e-02),
  1707. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.0907257562387762472884252943092272635270458523807153426840486964022086189874056947717446328187131273807982629114591e-02),
  1708. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.8754048765041292843978785354334211144679160542074930035102280759132174815469834227854660515366003136772757344886331e-02),
  1709. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.6509954882333101610601709335075414366517579522748565770867438338472138903658077617652522759934474895733739329287706e-02),
  1710. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.4191162078080601365686370725232026760391377828182462432228943562944885267501070688006470962871743661192935455117297e-02),
  1711. BOOST_MATH_HUGE_CONSTANT(T, 0, 2.1828035821609192297167485738338993401507296056834912773630422358720439403382559079356058602393879803560534375378340e-02),
  1712. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.9414141193942381173408951050128455851421014191431525770276066536497179079025540486072726114628763606440143557769099e-02),
  1713. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.6920889189053272627572289420322092368566703783835191139883410840546679978551861043620089451681146020853650713611444e-02),
  1714. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.4369729507045804812451432443580010195841899895001505873565899403000198662495821906144274682894222591414503342336172e-02),
  1715. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.1823015253496341742232898853250592896264406250607818326302431548265365155855182739401700032519141448997853772603766e-02),
  1716. BOOST_MATH_HUGE_CONSTANT(T, 0, 9.2732796595177634284411468920243604212700249381931076964956469143626665557434385492325784596343112153704094886248672e-03),
  1717. BOOST_MATH_HUGE_CONSTANT(T, 0, 6.6307039159312921733198263697501681336283882177812585973955597357837568277731921327731815844512598157843672104469554e-03),
  1718. BOOST_MATH_HUGE_CONSTANT(T, 0, 3.8904611270998840512672018445155032785151429848864649214200101281144733676455451061226273655941038347210163533085954e-03),
  1719. BOOST_MATH_HUGE_CONSTANT(T, 0, 1.3890136986770076245515912267596996810488412919632724534411055332301367130989865366956251556423820479579333920310978e-03),
  1720. };
  1721. return data;
  1722. }
  1723. };
  1724. }
  1725. template <class Real, unsigned N, class Policy = boost::math::policies::policy<> >
  1726. class gauss_kronrod : public detail::gauss_kronrod_detail<Real, N, detail::gauss_constant_category<Real>::value>
  1727. {
  1728. typedef detail::gauss_kronrod_detail<Real, N, detail::gauss_constant_category<Real>::value> base;
  1729. public:
  1730. typedef Real value_type;
  1731. private:
  1732. template <class F>
  1733. static auto integrate_non_adaptive_m1_1(F f, Real* error = nullptr, Real* pL1 = nullptr)->decltype(std::declval<F>()(std::declval<Real>()))
  1734. {
  1735. typedef decltype(f(Real(0))) K;
  1736. using std::abs;
  1737. unsigned gauss_start = 2;
  1738. unsigned kronrod_start = 1;
  1739. unsigned gauss_order = (N - 1) / 2;
  1740. K kronrod_result = 0;
  1741. K gauss_result = 0;
  1742. K fp, fm;
  1743. if (gauss_order & 1)
  1744. {
  1745. fp = f(value_type(0));
  1746. kronrod_result = fp * base::weights()[0];
  1747. gauss_result += fp * gauss<Real, (N - 1) / 2>::weights()[0];
  1748. }
  1749. else
  1750. {
  1751. fp = f(value_type(0));
  1752. kronrod_result = fp * base::weights()[0];
  1753. gauss_start = 1;
  1754. kronrod_start = 2;
  1755. }
  1756. Real L1 = abs(kronrod_result);
  1757. for (unsigned i = gauss_start; i < base::abscissa().size(); i += 2)
  1758. {
  1759. fp = f(base::abscissa()[i]);
  1760. fm = f(-base::abscissa()[i]);
  1761. kronrod_result += (fp + fm) * base::weights()[i];
  1762. L1 += (abs(fp) + abs(fm)) * base::weights()[i];
  1763. gauss_result += (fp + fm) * gauss<Real, (N - 1) / 2>::weights()[i / 2];
  1764. }
  1765. for (unsigned i = kronrod_start; i < base::abscissa().size(); i += 2)
  1766. {
  1767. fp = f(base::abscissa()[i]);
  1768. fm = f(-base::abscissa()[i]);
  1769. kronrod_result += (fp + fm) * base::weights()[i];
  1770. L1 += (abs(fp) + abs(fm)) * base::weights()[i];
  1771. }
  1772. if (pL1)
  1773. *pL1 = L1;
  1774. if (error)
  1775. *error = (std::max)(static_cast<Real>(abs(kronrod_result - gauss_result)), static_cast<Real>(abs(kronrod_result * tools::epsilon<Real>() * Real(2))));
  1776. return kronrod_result;
  1777. }
  1778. template <class F>
  1779. struct recursive_info
  1780. {
  1781. F f;
  1782. Real tol;
  1783. };
  1784. template <class F>
  1785. static auto recursive_adaptive_integrate(const recursive_info<F>* info, Real a, Real b, unsigned max_levels, Real abs_tol, Real* error, Real* L1)->decltype(std::declval<F>()(std::declval<Real>()))
  1786. {
  1787. typedef decltype(info->f(Real(a))) K;
  1788. using std::abs;
  1789. Real error_local;
  1790. Real mean = (b + a) / 2;
  1791. Real scale = (b - a) / 2;
  1792. auto ff = [&](const Real& x)->K
  1793. {
  1794. return info->f(scale * x + mean);
  1795. };
  1796. K r1 = integrate_non_adaptive_m1_1(ff, &error_local, L1);
  1797. K estimate = scale * r1;
  1798. K tmp = estimate * info->tol;
  1799. Real abs_tol1 = abs(tmp);
  1800. if (abs_tol == 0)
  1801. abs_tol = abs_tol1;
  1802. if (max_levels && (abs_tol1 < error_local) && (abs_tol < error_local))
  1803. {
  1804. Real mid = (a + b) / 2;
  1805. Real L1_local;
  1806. estimate = recursive_adaptive_integrate(info, a, mid, max_levels - 1, abs_tol / 2, error, L1);
  1807. estimate += recursive_adaptive_integrate(info, mid, b, max_levels - 1, abs_tol / 2, &error_local, &L1_local);
  1808. if (error)
  1809. *error += error_local;
  1810. if (L1)
  1811. *L1 += L1_local;
  1812. return estimate;
  1813. }
  1814. if(L1)
  1815. *L1 *= scale;
  1816. if (error)
  1817. *error = error_local;
  1818. return estimate;
  1819. }
  1820. public:
  1821. template <class F>
  1822. static auto integrate(F f, Real a, Real b, unsigned max_depth = 15, Real tol = tools::root_epsilon<Real>(), Real* error = nullptr, Real* pL1 = nullptr)->decltype(std::declval<F>()(std::declval<Real>()))
  1823. {
  1824. typedef decltype(f(a)) K;
  1825. static const char* function = "boost::math::quadrature::gauss_kronrod<%1%>::integrate(f, %1%, %1%)";
  1826. if (!(boost::math::isnan)(a) && !(boost::math::isnan)(b))
  1827. {
  1828. // Infinite limits:
  1829. if ((a <= -tools::max_value<Real>()) && (b >= tools::max_value<Real>()))
  1830. {
  1831. auto u = [&](const Real& t)->K
  1832. {
  1833. Real t_sq = t*t;
  1834. Real inv = 1 / (1 - t_sq);
  1835. Real w = (1 + t_sq)*inv*inv;
  1836. Real arg = t*inv;
  1837. K res = f(arg)*w;
  1838. return res;
  1839. };
  1840. recursive_info<decltype(u)> info = { u, tol };
  1841. K res = recursive_adaptive_integrate(&info, Real(-1), Real(1), max_depth, Real(0), error, pL1);
  1842. return res;
  1843. }
  1844. // Right limit is infinite:
  1845. if ((boost::math::isfinite)(a) && (b >= tools::max_value<Real>()))
  1846. {
  1847. auto u = [&](const Real& t)->K
  1848. {
  1849. Real z = 1 / (t + 1);
  1850. Real arg = 2 * z + a - 1;
  1851. K res = f(arg)*z*z;
  1852. return res;
  1853. };
  1854. recursive_info<decltype(u)> info = { u, tol };
  1855. K Q = Real(2) * recursive_adaptive_integrate(&info, Real(-1), Real(1), max_depth, Real(0), error, pL1);
  1856. if (pL1)
  1857. {
  1858. *pL1 *= 2;
  1859. }
  1860. return Q;
  1861. }
  1862. if ((boost::math::isfinite)(b) && (a <= -tools::max_value<Real>()))
  1863. {
  1864. auto v = [&](const Real& t)->K
  1865. {
  1866. Real z = 1 / (t + 1);
  1867. Real arg = 2 * z - 1;
  1868. return f(b - arg) * z * z;
  1869. };
  1870. recursive_info<decltype(v)> info = { v, tol };
  1871. K Q = Real(2) * recursive_adaptive_integrate(&info, Real(-1), Real(1), max_depth, Real(0), error, pL1);
  1872. if (pL1)
  1873. {
  1874. *pL1 *= 2;
  1875. }
  1876. return Q;
  1877. }
  1878. if ((boost::math::isfinite)(a) && (boost::math::isfinite)(b))
  1879. {
  1880. if (b <= a)
  1881. {
  1882. return policies::raise_domain_error(function, "Arguments to integrate are in wrong order; integration over [a,b] must have b > a.", a, Policy());
  1883. }
  1884. recursive_info<F> info = { f, tol };
  1885. return recursive_adaptive_integrate(&info, a, b, max_depth, Real(0), error, pL1);
  1886. }
  1887. }
  1888. return static_cast<K>(policies::raise_domain_error(function, "The domain of integration is not sensible; please check the bounds.", a, Policy()));
  1889. }
  1890. };
  1891. } // namespace quadrature
  1892. } // namespace math
  1893. } // namespace boost
  1894. #ifdef _MSC_VER
  1895. #pragma warning(pop)
  1896. #endif
  1897. #endif // BOOST_MATH_QUADRATURE_GAUSS_KRONROD_HPP