mpfr.hpp 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright 2011 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_MATH_BN_MPFR_HPP
  6. #define BOOST_MATH_BN_MPFR_HPP
  7. #include <boost/multiprecision/number.hpp>
  8. #include <boost/multiprecision/gmp.hpp>
  9. #include <boost/math/special_functions/fpclassify.hpp>
  10. #include <boost/cstdint.hpp>
  11. #include <boost/multiprecision/detail/big_lanczos.hpp>
  12. #include <boost/multiprecision/detail/digits.hpp>
  13. #include <mpfr.h>
  14. #include <cmath>
  15. #include <algorithm>
  16. namespace boost{
  17. namespace multiprecision{
  18. enum mpfr_allocation_type
  19. {
  20. allocate_stack,
  21. allocate_dynamic
  22. };
  23. namespace backends{
  24. template <unsigned digits10, mpfr_allocation_type AllocationType = allocate_dynamic>
  25. struct mpfr_float_backend;
  26. } // namespace backends
  27. template <unsigned digits10, mpfr_allocation_type AllocationType>
  28. struct number_category<backends::mpfr_float_backend<digits10, AllocationType> > : public mpl::int_<number_kind_floating_point>{};
  29. namespace backends{
  30. namespace detail{
  31. template <bool b>
  32. struct mpfr_cleanup
  33. {
  34. struct initializer
  35. {
  36. initializer() {}
  37. ~initializer(){ mpfr_free_cache(); }
  38. void force_instantiate()const {}
  39. };
  40. static const initializer init;
  41. static void force_instantiate() { init.force_instantiate(); }
  42. };
  43. template <bool b>
  44. typename mpfr_cleanup<b>::initializer const mpfr_cleanup<b>::init;
  45. inline long get_default_precision() { return 50; }
  46. template <unsigned digits10, mpfr_allocation_type AllocationType>
  47. struct mpfr_float_imp;
  48. template <unsigned digits10>
  49. struct mpfr_float_imp<digits10, allocate_dynamic>
  50. {
  51. #ifdef BOOST_HAS_LONG_LONG
  52. typedef mpl::list<long, boost::long_long_type> signed_types;
  53. typedef mpl::list<unsigned long, boost::ulong_long_type> unsigned_types;
  54. #else
  55. typedef mpl::list<long> signed_types;
  56. typedef mpl::list<unsigned long> unsigned_types;
  57. #endif
  58. typedef mpl::list<double, long double> float_types;
  59. typedef long exponent_type;
  60. mpfr_float_imp()
  61. {
  62. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  63. }
  64. mpfr_float_imp(unsigned prec)
  65. {
  66. mpfr_init2(m_data, prec);
  67. }
  68. mpfr_float_imp(const mpfr_float_imp& o)
  69. {
  70. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  71. if(o.m_data[0]._mpfr_d)
  72. mpfr_set(m_data, o.m_data, GMP_RNDN);
  73. }
  74. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  75. mpfr_float_imp(mpfr_float_imp&& o) BOOST_NOEXCEPT
  76. {
  77. m_data[0] = o.m_data[0];
  78. o.m_data[0]._mpfr_d = 0;
  79. }
  80. #endif
  81. mpfr_float_imp& operator = (const mpfr_float_imp& o)
  82. {
  83. if(m_data[0]._mpfr_d == 0)
  84. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  85. if(o.m_data[0]._mpfr_d)
  86. mpfr_set(m_data, o.m_data, GMP_RNDN);
  87. return *this;
  88. }
  89. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  90. mpfr_float_imp& operator = (mpfr_float_imp&& o) BOOST_NOEXCEPT
  91. {
  92. mpfr_swap(m_data, o.m_data);
  93. return *this;
  94. }
  95. #endif
  96. #ifdef BOOST_HAS_LONG_LONG
  97. #ifdef _MPFR_H_HAVE_INTMAX_T
  98. mpfr_float_imp& operator = (boost::ulong_long_type i)
  99. {
  100. if(m_data[0]._mpfr_d == 0)
  101. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  102. mpfr_set_uj(m_data, i, GMP_RNDN);
  103. return *this;
  104. }
  105. mpfr_float_imp& operator = (boost::long_long_type i)
  106. {
  107. if(m_data[0]._mpfr_d == 0)
  108. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  109. mpfr_set_sj(m_data, i, GMP_RNDN);
  110. return *this;
  111. }
  112. #else
  113. mpfr_float_imp& operator = (boost::ulong_long_type i)
  114. {
  115. if(m_data[0]._mpfr_d == 0)
  116. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  117. boost::ulong_long_type mask = ((((1uLL << (std::numeric_limits<unsigned long>::digits - 1)) - 1) << 1) | 1uLL);
  118. unsigned shift = 0;
  119. mpfr_t t;
  120. mpfr_init2(t, (std::max)(static_cast<unsigned long>(std::numeric_limits<boost::ulong_long_type>::digits), static_cast<unsigned long>(multiprecision::detail::digits10_2_2(digits10))));
  121. mpfr_set_ui(m_data, 0, GMP_RNDN);
  122. while(i)
  123. {
  124. mpfr_set_ui(t, static_cast<unsigned long>(i & mask), GMP_RNDN);
  125. if(shift)
  126. mpfr_mul_2exp(t, t, shift, GMP_RNDN);
  127. mpfr_add(m_data, m_data, t, GMP_RNDN);
  128. shift += std::numeric_limits<unsigned long>::digits;
  129. i >>= std::numeric_limits<unsigned long>::digits;
  130. }
  131. mpfr_clear(t);
  132. return *this;
  133. }
  134. mpfr_float_imp& operator = (boost::long_long_type i)
  135. {
  136. if(m_data[0]._mpfr_d == 0)
  137. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  138. bool neg = i < 0;
  139. *this = boost::multiprecision::detail::unsigned_abs(i);
  140. if(neg)
  141. mpfr_neg(m_data, m_data, GMP_RNDN);
  142. return *this;
  143. }
  144. #endif
  145. #endif
  146. mpfr_float_imp& operator = (unsigned long i)
  147. {
  148. if(m_data[0]._mpfr_d == 0)
  149. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  150. mpfr_set_ui(m_data, i, GMP_RNDN);
  151. return *this;
  152. }
  153. mpfr_float_imp& operator = (long i)
  154. {
  155. if(m_data[0]._mpfr_d == 0)
  156. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  157. mpfr_set_si(m_data, i, GMP_RNDN);
  158. return *this;
  159. }
  160. mpfr_float_imp& operator = (double d)
  161. {
  162. if(m_data[0]._mpfr_d == 0)
  163. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  164. mpfr_set_d(m_data, d, GMP_RNDN);
  165. return *this;
  166. }
  167. mpfr_float_imp& operator = (long double a)
  168. {
  169. if(m_data[0]._mpfr_d == 0)
  170. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  171. mpfr_set_ld(m_data, a, GMP_RNDN);
  172. return *this;
  173. }
  174. mpfr_float_imp& operator = (const char* s)
  175. {
  176. if(m_data[0]._mpfr_d == 0)
  177. mpfr_init2(m_data, multiprecision::detail::digits10_2_2(digits10 ? digits10 : get_default_precision()));
  178. if(mpfr_set_str(m_data, s, 10, GMP_RNDN) != 0)
  179. {
  180. BOOST_THROW_EXCEPTION(std::runtime_error(std::string("Unable to parse string \"") + s + std::string("\"as a valid floating point number.")));
  181. }
  182. return *this;
  183. }
  184. void swap(mpfr_float_imp& o) BOOST_NOEXCEPT
  185. {
  186. mpfr_swap(m_data, o.m_data);
  187. }
  188. std::string str(std::streamsize digits, std::ios_base::fmtflags f)const
  189. {
  190. BOOST_ASSERT(m_data[0]._mpfr_d);
  191. bool scientific = (f & std::ios_base::scientific) == std::ios_base::scientific;
  192. bool fixed = (f & std::ios_base::fixed) == std::ios_base::fixed;
  193. std::streamsize org_digits(digits);
  194. if(scientific && digits)
  195. ++digits;
  196. std::string result;
  197. mp_exp_t e;
  198. if(mpfr_inf_p(m_data))
  199. {
  200. if(mpfr_sgn(m_data) < 0)
  201. result = "-inf";
  202. else if(f & std::ios_base::showpos)
  203. result = "+inf";
  204. else
  205. result = "inf";
  206. return result;
  207. }
  208. if(mpfr_nan_p(m_data))
  209. {
  210. result = "nan";
  211. return result;
  212. }
  213. if(mpfr_zero_p(m_data))
  214. {
  215. e = 0;
  216. result = "0";
  217. }
  218. else
  219. {
  220. char* ps = mpfr_get_str (0, &e, 10, static_cast<std::size_t>(digits), m_data, GMP_RNDN);
  221. --e; // To match with what our formatter expects.
  222. if(fixed && e != -1)
  223. {
  224. // Oops we actually need a different number of digits to what we asked for:
  225. mpfr_free_str(ps);
  226. digits += e + 1;
  227. if(digits == 0)
  228. {
  229. // We need to get *all* the digits and then possibly round up,
  230. // we end up with either "0" or "1" as the result.
  231. ps = mpfr_get_str (0, &e, 10, 0, m_data, GMP_RNDN);
  232. --e;
  233. unsigned offset = *ps == '-' ? 1 : 0;
  234. if(ps[offset] > '5')
  235. {
  236. ++e;
  237. ps[offset] = '1';
  238. ps[offset + 1] = 0;
  239. }
  240. else if(ps[offset] == '5')
  241. {
  242. unsigned i = offset + 1;
  243. bool round_up = false;
  244. while(ps[i] != 0)
  245. {
  246. if(ps[i] != '0')
  247. {
  248. round_up = true;
  249. break;
  250. }
  251. }
  252. if(round_up)
  253. {
  254. ++e;
  255. ps[offset] = '1';
  256. ps[offset + 1] = 0;
  257. }
  258. else
  259. {
  260. ps[offset] = '0';
  261. ps[offset + 1] = 0;
  262. }
  263. }
  264. else
  265. {
  266. ps[offset] = '0';
  267. ps[offset + 1] = 0;
  268. }
  269. }
  270. else if(digits > 0)
  271. {
  272. ps = mpfr_get_str (0, &e, 10, static_cast<std::size_t>(digits), m_data, GMP_RNDN);
  273. --e; // To match with what our formatter expects.
  274. }
  275. else
  276. {
  277. ps = mpfr_get_str (0, &e, 10, 1, m_data, GMP_RNDN);
  278. --e;
  279. unsigned offset = *ps == '-' ? 1 : 0;
  280. ps[offset] = '0';
  281. ps[offset + 1] = 0;
  282. }
  283. }
  284. result = ps ? ps : "0";
  285. if(ps)
  286. mpfr_free_str(ps);
  287. }
  288. boost::multiprecision::detail::format_float_string(result, e, org_digits, f, 0 != mpfr_zero_p(m_data));
  289. return result;
  290. }
  291. ~mpfr_float_imp() BOOST_NOEXCEPT
  292. {
  293. if(m_data[0]._mpfr_d)
  294. mpfr_clear(m_data);
  295. detail::mpfr_cleanup<true>::force_instantiate();
  296. }
  297. void negate() BOOST_NOEXCEPT
  298. {
  299. BOOST_ASSERT(m_data[0]._mpfr_d);
  300. mpfr_neg(m_data, m_data, GMP_RNDN);
  301. }
  302. template <mpfr_allocation_type AllocationType>
  303. int compare(const mpfr_float_backend<digits10, AllocationType>& o)const BOOST_NOEXCEPT
  304. {
  305. BOOST_ASSERT(m_data[0]._mpfr_d && o.m_data[0]._mpfr_d);
  306. return mpfr_cmp(m_data, o.m_data);
  307. }
  308. int compare(long i)const BOOST_NOEXCEPT
  309. {
  310. BOOST_ASSERT(m_data[0]._mpfr_d);
  311. return mpfr_cmp_si(m_data, i);
  312. }
  313. int compare(unsigned long i)const BOOST_NOEXCEPT
  314. {
  315. BOOST_ASSERT(m_data[0]._mpfr_d);
  316. return mpfr_cmp_ui(m_data, i);
  317. }
  318. template <class V>
  319. int compare(V v)const BOOST_NOEXCEPT
  320. {
  321. mpfr_float_backend<digits10, allocate_dynamic> d;
  322. d = v;
  323. return compare(d);
  324. }
  325. mpfr_t& data() BOOST_NOEXCEPT
  326. {
  327. BOOST_ASSERT(m_data[0]._mpfr_d);
  328. return m_data;
  329. }
  330. const mpfr_t& data()const BOOST_NOEXCEPT
  331. {
  332. BOOST_ASSERT(m_data[0]._mpfr_d);
  333. return m_data;
  334. }
  335. protected:
  336. mpfr_t m_data;
  337. static unsigned& get_default_precision() BOOST_NOEXCEPT
  338. {
  339. static unsigned val = 50;
  340. return val;
  341. }
  342. };
  343. #ifdef BOOST_MSVC
  344. #pragma warning(push)
  345. #pragma warning(disable:4127) // Conditional expression is constant
  346. #endif
  347. template <unsigned digits10>
  348. struct mpfr_float_imp<digits10, allocate_stack>
  349. {
  350. #ifdef BOOST_HAS_LONG_LONG
  351. typedef mpl::list<long, boost::long_long_type> signed_types;
  352. typedef mpl::list<unsigned long, boost::ulong_long_type> unsigned_types;
  353. #else
  354. typedef mpl::list<long> signed_types;
  355. typedef mpl::list<unsigned long> unsigned_types;
  356. #endif
  357. typedef mpl::list<double, long double> float_types;
  358. typedef long exponent_type;
  359. static const unsigned digits2 = (digits10 * 1000uL) / 301uL + ((digits10 * 1000uL) % 301 ? 2u : 1u);
  360. static const unsigned limb_count = mpfr_custom_get_size(digits2) / sizeof(mp_limb_t);
  361. ~mpfr_float_imp() BOOST_NOEXCEPT
  362. {
  363. detail::mpfr_cleanup<true>::force_instantiate();
  364. }
  365. mpfr_float_imp()
  366. {
  367. mpfr_custom_init(m_buffer, digits2);
  368. mpfr_custom_init_set(m_data, MPFR_NAN_KIND, 0, digits2, m_buffer);
  369. }
  370. mpfr_float_imp(const mpfr_float_imp& o)
  371. {
  372. mpfr_custom_init(m_buffer, digits2);
  373. mpfr_custom_init_set(m_data, MPFR_NAN_KIND, 0, digits2, m_buffer);
  374. mpfr_set(m_data, o.m_data, GMP_RNDN);
  375. }
  376. mpfr_float_imp& operator = (const mpfr_float_imp& o)
  377. {
  378. mpfr_set(m_data, o.m_data, GMP_RNDN);
  379. return *this;
  380. }
  381. #ifdef BOOST_HAS_LONG_LONG
  382. #ifdef _MPFR_H_HAVE_INTMAX_T
  383. mpfr_float_imp& operator = (boost::ulong_long_type i)
  384. {
  385. mpfr_set_uj(m_data, i, GMP_RNDN);
  386. return *this;
  387. }
  388. mpfr_float_imp& operator = (boost::long_long_type i)
  389. {
  390. mpfr_set_sj(m_data, i, GMP_RNDN);
  391. return *this;
  392. }
  393. #else
  394. mpfr_float_imp& operator = (boost::ulong_long_type i)
  395. {
  396. boost::ulong_long_type mask = ((((1uLL << (std::numeric_limits<unsigned long>::digits - 1)) - 1) << 1) | 1uL);
  397. unsigned shift = 0;
  398. mpfr_t t;
  399. mp_limb_t t_limbs[limb_count];
  400. mpfr_custom_init(t_limbs, digits2);
  401. mpfr_custom_init_set(t, MPFR_NAN_KIND, 0, digits2, t_limbs);
  402. mpfr_set_ui(m_data, 0, GMP_RNDN);
  403. while(i)
  404. {
  405. mpfr_set_ui(t, static_cast<unsigned long>(i & mask), GMP_RNDN);
  406. if(shift)
  407. mpfr_mul_2exp(t, t, shift, GMP_RNDN);
  408. mpfr_add(m_data, m_data, t, GMP_RNDN);
  409. shift += std::numeric_limits<unsigned long>::digits;
  410. i >>= std::numeric_limits<unsigned long>::digits;
  411. }
  412. return *this;
  413. }
  414. mpfr_float_imp& operator = (boost::long_long_type i)
  415. {
  416. bool neg = i < 0;
  417. *this = boost::multiprecision::detail::unsigned_abs(i);
  418. if(neg)
  419. mpfr_neg(m_data, m_data, GMP_RNDN);
  420. return *this;
  421. }
  422. #endif
  423. #endif
  424. mpfr_float_imp& operator = (unsigned long i)
  425. {
  426. mpfr_set_ui(m_data, i, GMP_RNDN);
  427. return *this;
  428. }
  429. mpfr_float_imp& operator = (long i)
  430. {
  431. mpfr_set_si(m_data, i, GMP_RNDN);
  432. return *this;
  433. }
  434. mpfr_float_imp& operator = (double d)
  435. {
  436. mpfr_set_d(m_data, d, GMP_RNDN);
  437. return *this;
  438. }
  439. mpfr_float_imp& operator = (long double a)
  440. {
  441. mpfr_set_ld(m_data, a, GMP_RNDN);
  442. return *this;
  443. }
  444. mpfr_float_imp& operator = (const char* s)
  445. {
  446. if(mpfr_set_str(m_data, s, 10, GMP_RNDN) != 0)
  447. {
  448. BOOST_THROW_EXCEPTION(std::runtime_error(std::string("Unable to parse string \"") + s + std::string("\"as a valid floating point number.")));
  449. }
  450. return *this;
  451. }
  452. void swap(mpfr_float_imp& o) BOOST_NOEXCEPT
  453. {
  454. // We have to swap by copying:
  455. mpfr_float_imp t(*this);
  456. *this = o;
  457. o = t;
  458. }
  459. std::string str(std::streamsize digits, std::ios_base::fmtflags f)const
  460. {
  461. BOOST_ASSERT(m_data[0]._mpfr_d);
  462. bool scientific = (f & std::ios_base::scientific) == std::ios_base::scientific;
  463. bool fixed = (f & std::ios_base::fixed) == std::ios_base::fixed;
  464. std::streamsize org_digits(digits);
  465. if(scientific && digits)
  466. ++digits;
  467. std::string result;
  468. mp_exp_t e;
  469. if(mpfr_inf_p(m_data))
  470. {
  471. if(mpfr_sgn(m_data) < 0)
  472. result = "-inf";
  473. else if(f & std::ios_base::showpos)
  474. result = "+inf";
  475. else
  476. result = "inf";
  477. return result;
  478. }
  479. if(mpfr_nan_p(m_data))
  480. {
  481. result = "nan";
  482. return result;
  483. }
  484. if(mpfr_zero_p(m_data))
  485. {
  486. e = 0;
  487. result = "0";
  488. }
  489. else
  490. {
  491. char* ps = mpfr_get_str (0, &e, 10, static_cast<std::size_t>(digits), m_data, GMP_RNDN);
  492. --e; // To match with what our formatter expects.
  493. if(fixed && e != -1)
  494. {
  495. // Oops we actually need a different number of digits to what we asked for:
  496. mpfr_free_str(ps);
  497. digits += e + 1;
  498. if(digits == 0)
  499. {
  500. // We need to get *all* the digits and then possibly round up,
  501. // we end up with either "0" or "1" as the result.
  502. ps = mpfr_get_str (0, &e, 10, 0, m_data, GMP_RNDN);
  503. --e;
  504. unsigned offset = *ps == '-' ? 1 : 0;
  505. if(ps[offset] > '5')
  506. {
  507. ++e;
  508. ps[offset] = '1';
  509. ps[offset + 1] = 0;
  510. }
  511. else if(ps[offset] == '5')
  512. {
  513. unsigned i = offset + 1;
  514. bool round_up = false;
  515. while(ps[i] != 0)
  516. {
  517. if(ps[i] != '0')
  518. {
  519. round_up = true;
  520. break;
  521. }
  522. }
  523. if(round_up)
  524. {
  525. ++e;
  526. ps[offset] = '1';
  527. ps[offset + 1] = 0;
  528. }
  529. else
  530. {
  531. ps[offset] = '0';
  532. ps[offset + 1] = 0;
  533. }
  534. }
  535. else
  536. {
  537. ps[offset] = '0';
  538. ps[offset + 1] = 0;
  539. }
  540. }
  541. else if(digits > 0)
  542. {
  543. ps = mpfr_get_str (0, &e, 10, static_cast<std::size_t>(digits), m_data, GMP_RNDN);
  544. --e; // To match with what our formatter expects.
  545. }
  546. else
  547. {
  548. ps = mpfr_get_str (0, &e, 10, 1, m_data, GMP_RNDN);
  549. --e;
  550. unsigned offset = *ps == '-' ? 1 : 0;
  551. ps[offset] = '0';
  552. ps[offset + 1] = 0;
  553. }
  554. }
  555. result = ps ? ps : "0";
  556. if(ps)
  557. mpfr_free_str(ps);
  558. }
  559. boost::multiprecision::detail::format_float_string(result, e, org_digits, f, 0 != mpfr_zero_p(m_data));
  560. return result;
  561. }
  562. void negate() BOOST_NOEXCEPT
  563. {
  564. mpfr_neg(m_data, m_data, GMP_RNDN);
  565. }
  566. template <mpfr_allocation_type AllocationType>
  567. int compare(const mpfr_float_backend<digits10, AllocationType>& o)const BOOST_NOEXCEPT
  568. {
  569. return mpfr_cmp(m_data, o.m_data);
  570. }
  571. int compare(long i)const BOOST_NOEXCEPT
  572. {
  573. return mpfr_cmp_si(m_data, i);
  574. }
  575. int compare(unsigned long i)const BOOST_NOEXCEPT
  576. {
  577. return mpfr_cmp_ui(m_data, i);
  578. }
  579. template <class V>
  580. int compare(V v)const BOOST_NOEXCEPT
  581. {
  582. mpfr_float_backend<digits10, allocate_stack> d;
  583. d = v;
  584. return compare(d);
  585. }
  586. mpfr_t& data() BOOST_NOEXCEPT
  587. {
  588. return m_data;
  589. }
  590. const mpfr_t& data()const BOOST_NOEXCEPT
  591. {
  592. return m_data;
  593. }
  594. protected:
  595. mpfr_t m_data;
  596. mp_limb_t m_buffer[limb_count];
  597. };
  598. #ifdef BOOST_MSVC
  599. #pragma warning(pop)
  600. #endif
  601. } // namespace detail
  602. template <unsigned digits10, mpfr_allocation_type AllocationType>
  603. struct mpfr_float_backend : public detail::mpfr_float_imp<digits10, AllocationType>
  604. {
  605. mpfr_float_backend() : detail::mpfr_float_imp<digits10, AllocationType>() {}
  606. mpfr_float_backend(const mpfr_float_backend& o) : detail::mpfr_float_imp<digits10, AllocationType>(o) {}
  607. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  608. mpfr_float_backend(mpfr_float_backend&& o) BOOST_NOEXCEPT : detail::mpfr_float_imp<digits10, AllocationType>(static_cast<detail::mpfr_float_imp<digits10, AllocationType>&&>(o)) {}
  609. #endif
  610. template <unsigned D, mpfr_allocation_type AT>
  611. mpfr_float_backend(const mpfr_float_backend<D, AT>& val, typename enable_if_c<D <= digits10>::type* = 0)
  612. : detail::mpfr_float_imp<digits10, AllocationType>()
  613. {
  614. mpfr_set(this->m_data, val.data(), GMP_RNDN);
  615. }
  616. template <unsigned D, mpfr_allocation_type AT>
  617. explicit mpfr_float_backend(const mpfr_float_backend<D, AT>& val, typename disable_if_c<D <= digits10>::type* = 0)
  618. : detail::mpfr_float_imp<digits10, AllocationType>()
  619. {
  620. mpfr_set(this->m_data, val.data(), GMP_RNDN);
  621. }
  622. template <unsigned D>
  623. mpfr_float_backend(const gmp_float<D>& val, typename enable_if_c<D <= digits10>::type* = 0)
  624. : detail::mpfr_float_imp<digits10, AllocationType>()
  625. {
  626. mpfr_set_f(this->m_data, val.data(), GMP_RNDN);
  627. }
  628. template <unsigned D>
  629. mpfr_float_backend(const gmp_float<D>& val, typename disable_if_c<D <= digits10>::type* = 0)
  630. : detail::mpfr_float_imp<digits10, AllocationType>()
  631. {
  632. mpfr_set_f(this->m_data, val.data(), GMP_RNDN);
  633. }
  634. mpfr_float_backend(const gmp_int& val)
  635. : detail::mpfr_float_imp<digits10, AllocationType>()
  636. {
  637. mpfr_set_z(this->m_data, val.data(), GMP_RNDN);
  638. }
  639. mpfr_float_backend(const gmp_rational& val)
  640. : detail::mpfr_float_imp<digits10, AllocationType>()
  641. {
  642. mpfr_set_q(this->m_data, val.data(), GMP_RNDN);
  643. }
  644. mpfr_float_backend(const mpfr_t val)
  645. : detail::mpfr_float_imp<digits10, AllocationType>()
  646. {
  647. mpfr_set(this->m_data, val, GMP_RNDN);
  648. }
  649. mpfr_float_backend(const mpf_t val)
  650. : detail::mpfr_float_imp<digits10, AllocationType>()
  651. {
  652. mpfr_set_f(this->m_data, val, GMP_RNDN);
  653. }
  654. mpfr_float_backend(const mpz_t val)
  655. : detail::mpfr_float_imp<digits10, AllocationType>()
  656. {
  657. mpfr_set_z(this->m_data, val, GMP_RNDN);
  658. }
  659. mpfr_float_backend(const mpq_t val)
  660. : detail::mpfr_float_imp<digits10, AllocationType>()
  661. {
  662. mpfr_set_q(this->m_data, val, GMP_RNDN);
  663. }
  664. mpfr_float_backend& operator=(const mpfr_float_backend& o)
  665. {
  666. *static_cast<detail::mpfr_float_imp<digits10, AllocationType>*>(this) = static_cast<detail::mpfr_float_imp<digits10, AllocationType> const&>(o);
  667. return *this;
  668. }
  669. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  670. mpfr_float_backend& operator=(mpfr_float_backend&& o) BOOST_NOEXCEPT
  671. {
  672. *static_cast<detail::mpfr_float_imp<digits10, AllocationType>*>(this) = static_cast<detail::mpfr_float_imp<digits10, AllocationType>&&>(o);
  673. return *this;
  674. }
  675. #endif
  676. template <class V>
  677. mpfr_float_backend& operator=(const V& v)
  678. {
  679. *static_cast<detail::mpfr_float_imp<digits10, AllocationType>*>(this) = v;
  680. return *this;
  681. }
  682. mpfr_float_backend& operator=(const mpfr_t val)
  683. {
  684. if(this->m_data[0]._mpfr_d == 0)
  685. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  686. mpfr_set(this->m_data, val, GMP_RNDN);
  687. return *this;
  688. }
  689. mpfr_float_backend& operator=(const mpf_t val)
  690. {
  691. if(this->m_data[0]._mpfr_d == 0)
  692. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  693. mpfr_set_f(this->m_data, val, GMP_RNDN);
  694. return *this;
  695. }
  696. mpfr_float_backend& operator=(const mpz_t val)
  697. {
  698. if(this->m_data[0]._mpfr_d == 0)
  699. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  700. mpfr_set_z(this->m_data, val, GMP_RNDN);
  701. return *this;
  702. }
  703. mpfr_float_backend& operator=(const mpq_t val)
  704. {
  705. if(this->m_data[0]._mpfr_d == 0)
  706. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  707. mpfr_set_q(this->m_data, val, GMP_RNDN);
  708. return *this;
  709. }
  710. // We don't change our precision here, this is a fixed precision type:
  711. template <unsigned D, mpfr_allocation_type AT>
  712. mpfr_float_backend& operator=(const mpfr_float_backend<D, AT>& val)
  713. {
  714. if(this->m_data[0]._mpfr_d == 0)
  715. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  716. mpfr_set(this->m_data, val.data(), GMP_RNDN);
  717. return *this;
  718. }
  719. template <unsigned D>
  720. mpfr_float_backend& operator=(const gmp_float<D>& val)
  721. {
  722. if(this->m_data[0]._mpfr_d == 0)
  723. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  724. mpfr_set_f(this->m_data, val.data(), GMP_RNDN);
  725. return *this;
  726. }
  727. mpfr_float_backend& operator=(const gmp_int& val)
  728. {
  729. if(this->m_data[0]._mpfr_d == 0)
  730. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  731. mpfr_set_z(this->m_data, val.data(), GMP_RNDN);
  732. return *this;
  733. }
  734. mpfr_float_backend& operator=(const gmp_rational& val)
  735. {
  736. if(this->m_data[0]._mpfr_d == 0)
  737. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(digits10));
  738. mpfr_set_q(this->m_data, val.data(), GMP_RNDN);
  739. return *this;
  740. }
  741. };
  742. template <>
  743. struct mpfr_float_backend<0, allocate_dynamic> : public detail::mpfr_float_imp<0, allocate_dynamic>
  744. {
  745. mpfr_float_backend() : detail::mpfr_float_imp<0, allocate_dynamic>() {}
  746. mpfr_float_backend(const mpfr_t val)
  747. : detail::mpfr_float_imp<0, allocate_dynamic>(mpfr_get_prec(val))
  748. {
  749. mpfr_set(this->m_data, val, GMP_RNDN);
  750. }
  751. mpfr_float_backend(const mpf_t val)
  752. : detail::mpfr_float_imp<0, allocate_dynamic>(mpf_get_prec(val))
  753. {
  754. mpfr_set_f(this->m_data, val, GMP_RNDN);
  755. }
  756. mpfr_float_backend(const mpz_t val)
  757. : detail::mpfr_float_imp<0, allocate_dynamic>()
  758. {
  759. mpfr_set_z(this->m_data, val, GMP_RNDN);
  760. }
  761. mpfr_float_backend(const mpq_t val)
  762. : detail::mpfr_float_imp<0, allocate_dynamic>()
  763. {
  764. mpfr_set_q(this->m_data, val, GMP_RNDN);
  765. }
  766. mpfr_float_backend(const mpfr_float_backend& o) : detail::mpfr_float_imp<0, allocate_dynamic>(o) {}
  767. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  768. mpfr_float_backend(mpfr_float_backend&& o) BOOST_NOEXCEPT : detail::mpfr_float_imp<0, allocate_dynamic>(static_cast<detail::mpfr_float_imp<0, allocate_dynamic>&&>(o)) {}
  769. #endif
  770. mpfr_float_backend(const mpfr_float_backend& o, unsigned digits10)
  771. : detail::mpfr_float_imp<0, allocate_dynamic>(digits10)
  772. {
  773. *this = o;
  774. }
  775. template <unsigned D>
  776. mpfr_float_backend(const mpfr_float_backend<D>& val)
  777. : detail::mpfr_float_imp<0, allocate_dynamic>(mpfr_get_prec(val.data()))
  778. {
  779. mpfr_set(this->m_data, val.data(), GMP_RNDN);
  780. }
  781. template <unsigned D>
  782. mpfr_float_backend(const gmp_float<D>& val)
  783. : detail::mpfr_float_imp<0, allocate_dynamic>(mpf_get_prec(val.data()))
  784. {
  785. mpfr_set_f(this->m_data, val.data(), GMP_RNDN);
  786. }
  787. mpfr_float_backend(const gmp_int& val)
  788. : detail::mpfr_float_imp<0, allocate_dynamic>()
  789. {
  790. mpfr_set_z(this->m_data, val.data(), GMP_RNDN);
  791. }
  792. mpfr_float_backend(const gmp_rational& val)
  793. : detail::mpfr_float_imp<0, allocate_dynamic>()
  794. {
  795. mpfr_set_q(this->m_data, val.data(), GMP_RNDN);
  796. }
  797. mpfr_float_backend& operator=(const mpfr_float_backend& o)
  798. {
  799. if(this != &o)
  800. {
  801. if(this->m_data[0]._mpfr_d == 0)
  802. mpfr_init2(this->m_data, mpfr_get_prec(o.data()));
  803. else
  804. mpfr_set_prec(this->m_data, mpfr_get_prec(o.data()));
  805. mpfr_set(this->m_data, o.data(), GMP_RNDN);
  806. }
  807. return *this;
  808. }
  809. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  810. mpfr_float_backend& operator=(mpfr_float_backend&& o) BOOST_NOEXCEPT
  811. {
  812. *static_cast<detail::mpfr_float_imp<0, allocate_dynamic>*>(this) = static_cast<detail::mpfr_float_imp<0, allocate_dynamic> &&>(o);
  813. return *this;
  814. }
  815. #endif
  816. template <class V>
  817. mpfr_float_backend& operator=(const V& v)
  818. {
  819. *static_cast<detail::mpfr_float_imp<0, allocate_dynamic>*>(this) = v;
  820. return *this;
  821. }
  822. mpfr_float_backend& operator=(const mpfr_t val)
  823. {
  824. if(this->m_data[0]._mpfr_d == 0)
  825. mpfr_init2(this->m_data, mpfr_get_prec(val));
  826. else
  827. mpfr_set_prec(this->m_data, mpfr_get_prec(val));
  828. mpfr_set(this->m_data, val, GMP_RNDN);
  829. return *this;
  830. }
  831. mpfr_float_backend& operator=(const mpf_t val)
  832. {
  833. if(this->m_data[0]._mpfr_d == 0)
  834. mpfr_init2(this->m_data, mpf_get_prec(val));
  835. else
  836. mpfr_set_prec(this->m_data, mpf_get_prec(val));
  837. mpfr_set_f(this->m_data, val, GMP_RNDN);
  838. return *this;
  839. }
  840. mpfr_float_backend& operator=(const mpz_t val)
  841. {
  842. if(this->m_data[0]._mpfr_d == 0)
  843. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(get_default_precision()));
  844. mpfr_set_z(this->m_data, val, GMP_RNDN);
  845. return *this;
  846. }
  847. mpfr_float_backend& operator=(const mpq_t val)
  848. {
  849. if(this->m_data[0]._mpfr_d == 0)
  850. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(get_default_precision()));
  851. mpfr_set_q(this->m_data, val, GMP_RNDN);
  852. return *this;
  853. }
  854. template <unsigned D>
  855. mpfr_float_backend& operator=(const mpfr_float_backend<D>& val)
  856. {
  857. if(this->m_data[0]._mpfr_d == 0)
  858. mpfr_init2(this->m_data, mpfr_get_prec(val.data()));
  859. else
  860. mpfr_set_prec(this->m_data, mpfr_get_prec(val.data()));
  861. mpfr_set(this->m_data, val.data(), GMP_RNDN);
  862. return *this;
  863. }
  864. template <unsigned D>
  865. mpfr_float_backend& operator=(const gmp_float<D>& val)
  866. {
  867. if(this->m_data[0]._mpfr_d == 0)
  868. mpfr_init2(this->m_data, mpf_get_prec(val.data()));
  869. else
  870. mpfr_set_prec(this->m_data, mpf_get_prec(val.data()));
  871. mpfr_set_f(this->m_data, val.data(), GMP_RNDN);
  872. return *this;
  873. }
  874. mpfr_float_backend& operator=(const gmp_int& val)
  875. {
  876. if(this->m_data[0]._mpfr_d == 0)
  877. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(get_default_precision()));
  878. mpfr_set_z(this->m_data, val.data(), GMP_RNDN);
  879. return *this;
  880. }
  881. mpfr_float_backend& operator=(const gmp_rational& val)
  882. {
  883. if(this->m_data[0]._mpfr_d == 0)
  884. mpfr_init2(this->m_data, multiprecision::detail::digits10_2_2(get_default_precision()));
  885. mpfr_set_q(this->m_data, val.data(), GMP_RNDN);
  886. return *this;
  887. }
  888. static unsigned default_precision() BOOST_NOEXCEPT
  889. {
  890. return get_default_precision();
  891. }
  892. static void default_precision(unsigned v) BOOST_NOEXCEPT
  893. {
  894. get_default_precision() = v;
  895. }
  896. unsigned precision()const BOOST_NOEXCEPT
  897. {
  898. return multiprecision::detail::digits2_2_10(mpfr_get_prec(this->m_data));
  899. }
  900. void precision(unsigned digits10) BOOST_NOEXCEPT
  901. {
  902. mpfr_prec_round(this->m_data, multiprecision::detail::digits10_2_2((digits10)), GMP_RNDN);
  903. }
  904. };
  905. template <unsigned digits10, mpfr_allocation_type AllocationType, class T>
  906. inline typename enable_if<is_arithmetic<T>, bool>::type eval_eq(const mpfr_float_backend<digits10, AllocationType>& a, const T& b) BOOST_NOEXCEPT
  907. {
  908. return a.compare(b) == 0;
  909. }
  910. template <unsigned digits10, mpfr_allocation_type AllocationType, class T>
  911. inline typename enable_if<is_arithmetic<T>, bool>::type eval_lt(const mpfr_float_backend<digits10, AllocationType>& a, const T& b) BOOST_NOEXCEPT
  912. {
  913. return a.compare(b) < 0;
  914. }
  915. template <unsigned digits10, mpfr_allocation_type AllocationType, class T>
  916. inline typename enable_if<is_arithmetic<T>, bool>::type eval_gt(const mpfr_float_backend<digits10, AllocationType>& a, const T& b) BOOST_NOEXCEPT
  917. {
  918. return a.compare(b) > 0;
  919. }
  920. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  921. inline void eval_add(mpfr_float_backend<D1, A1>& result, const mpfr_float_backend<D2, A2>& o)
  922. {
  923. mpfr_add(result.data(), result.data(), o.data(), GMP_RNDN);
  924. }
  925. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  926. inline void eval_subtract(mpfr_float_backend<D1, A1>& result, const mpfr_float_backend<D2, A2>& o)
  927. {
  928. mpfr_sub(result.data(), result.data(), o.data(), GMP_RNDN);
  929. }
  930. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  931. inline void eval_multiply(mpfr_float_backend<D1, A1>& result, const mpfr_float_backend<D2, A2>& o)
  932. {
  933. if((void*)&o == (void*)&result)
  934. mpfr_sqr(result.data(), o.data(), GMP_RNDN);
  935. else
  936. mpfr_mul(result.data(), result.data(), o.data(), GMP_RNDN);
  937. }
  938. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  939. inline void eval_divide(mpfr_float_backend<D1, A1>& result, const mpfr_float_backend<D2, A2>& o)
  940. {
  941. mpfr_div(result.data(), result.data(), o.data(), GMP_RNDN);
  942. }
  943. template <unsigned digits10, mpfr_allocation_type AllocationType>
  944. inline void eval_add(mpfr_float_backend<digits10, AllocationType>& result, unsigned long i)
  945. {
  946. mpfr_add_ui(result.data(), result.data(), i, GMP_RNDN);
  947. }
  948. template <unsigned digits10, mpfr_allocation_type AllocationType>
  949. inline void eval_subtract(mpfr_float_backend<digits10, AllocationType>& result, unsigned long i)
  950. {
  951. mpfr_sub_ui(result.data(), result.data(), i, GMP_RNDN);
  952. }
  953. template <unsigned digits10, mpfr_allocation_type AllocationType>
  954. inline void eval_multiply(mpfr_float_backend<digits10, AllocationType>& result, unsigned long i)
  955. {
  956. mpfr_mul_ui(result.data(), result.data(), i, GMP_RNDN);
  957. }
  958. template <unsigned digits10, mpfr_allocation_type AllocationType>
  959. inline void eval_divide(mpfr_float_backend<digits10, AllocationType>& result, unsigned long i)
  960. {
  961. mpfr_div_ui(result.data(), result.data(), i, GMP_RNDN);
  962. }
  963. template <unsigned digits10, mpfr_allocation_type AllocationType>
  964. inline void eval_add(mpfr_float_backend<digits10, AllocationType>& result, long i)
  965. {
  966. if(i > 0)
  967. mpfr_add_ui(result.data(), result.data(), i, GMP_RNDN);
  968. else
  969. mpfr_sub_ui(result.data(), result.data(), boost::multiprecision::detail::unsigned_abs(i), GMP_RNDN);
  970. }
  971. template <unsigned digits10, mpfr_allocation_type AllocationType>
  972. inline void eval_subtract(mpfr_float_backend<digits10, AllocationType>& result, long i)
  973. {
  974. if(i > 0)
  975. mpfr_sub_ui(result.data(), result.data(), i, GMP_RNDN);
  976. else
  977. mpfr_add_ui(result.data(), result.data(), boost::multiprecision::detail::unsigned_abs(i), GMP_RNDN);
  978. }
  979. template <unsigned digits10, mpfr_allocation_type AllocationType>
  980. inline void eval_multiply(mpfr_float_backend<digits10, AllocationType>& result, long i)
  981. {
  982. mpfr_mul_ui(result.data(), result.data(), boost::multiprecision::detail::unsigned_abs(i), GMP_RNDN);
  983. if(i < 0)
  984. mpfr_neg(result.data(), result.data(), GMP_RNDN);
  985. }
  986. template <unsigned digits10, mpfr_allocation_type AllocationType>
  987. inline void eval_divide(mpfr_float_backend<digits10, AllocationType>& result, long i)
  988. {
  989. mpfr_div_ui(result.data(), result.data(), boost::multiprecision::detail::unsigned_abs(i), GMP_RNDN);
  990. if(i < 0)
  991. mpfr_neg(result.data(), result.data(), GMP_RNDN);
  992. }
  993. //
  994. // Specialised 3 arg versions of the basic operators:
  995. //
  996. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2, unsigned D3>
  997. inline void eval_add(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, const mpfr_float_backend<D3>& y)
  998. {
  999. mpfr_add(a.data(), x.data(), y.data(), GMP_RNDN);
  1000. }
  1001. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1002. inline void eval_add(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, unsigned long y)
  1003. {
  1004. mpfr_add_ui(a.data(), x.data(), y, GMP_RNDN);
  1005. }
  1006. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1007. inline void eval_add(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, long y)
  1008. {
  1009. if(y < 0)
  1010. mpfr_sub_ui(a.data(), x.data(), boost::multiprecision::detail::unsigned_abs(y), GMP_RNDN);
  1011. else
  1012. mpfr_add_ui(a.data(), x.data(), y, GMP_RNDN);
  1013. }
  1014. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1015. inline void eval_add(mpfr_float_backend<D1, A1>& a, unsigned long x, const mpfr_float_backend<D2, A2>& y)
  1016. {
  1017. mpfr_add_ui(a.data(), y.data(), x, GMP_RNDN);
  1018. }
  1019. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1020. inline void eval_add(mpfr_float_backend<D1, A1>& a, long x, const mpfr_float_backend<D2, A2>& y)
  1021. {
  1022. if(x < 0)
  1023. {
  1024. mpfr_ui_sub(a.data(), boost::multiprecision::detail::unsigned_abs(x), y.data(), GMP_RNDN);
  1025. mpfr_neg(a.data(), a.data(), GMP_RNDN);
  1026. }
  1027. else
  1028. mpfr_add_ui(a.data(), y.data(), x, GMP_RNDN);
  1029. }
  1030. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2, unsigned D3>
  1031. inline void eval_subtract(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, const mpfr_float_backend<D3>& y)
  1032. {
  1033. mpfr_sub(a.data(), x.data(), y.data(), GMP_RNDN);
  1034. }
  1035. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1036. inline void eval_subtract(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, unsigned long y)
  1037. {
  1038. mpfr_sub_ui(a.data(), x.data(), y, GMP_RNDN);
  1039. }
  1040. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1041. inline void eval_subtract(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, long y)
  1042. {
  1043. if(y < 0)
  1044. mpfr_add_ui(a.data(), x.data(), boost::multiprecision::detail::unsigned_abs(y), GMP_RNDN);
  1045. else
  1046. mpfr_sub_ui(a.data(), x.data(), y, GMP_RNDN);
  1047. }
  1048. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1049. inline void eval_subtract(mpfr_float_backend<D1, A1>& a, unsigned long x, const mpfr_float_backend<D2, A2>& y)
  1050. {
  1051. mpfr_ui_sub(a.data(), x, y.data(), GMP_RNDN);
  1052. }
  1053. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1054. inline void eval_subtract(mpfr_float_backend<D1, A1>& a, long x, const mpfr_float_backend<D2, A2>& y)
  1055. {
  1056. if(x < 0)
  1057. {
  1058. mpfr_add_ui(a.data(), y.data(), boost::multiprecision::detail::unsigned_abs(x), GMP_RNDN);
  1059. mpfr_neg(a.data(), a.data(), GMP_RNDN);
  1060. }
  1061. else
  1062. mpfr_ui_sub(a.data(), x, y.data(), GMP_RNDN);
  1063. }
  1064. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2, unsigned D3>
  1065. inline void eval_multiply(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, const mpfr_float_backend<D3>& y)
  1066. {
  1067. if((void*)&x == (void*)&y)
  1068. mpfr_sqr(a.data(), x.data(), GMP_RNDN);
  1069. else
  1070. mpfr_mul(a.data(), x.data(), y.data(), GMP_RNDN);
  1071. }
  1072. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1073. inline void eval_multiply(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, unsigned long y)
  1074. {
  1075. mpfr_mul_ui(a.data(), x.data(), y, GMP_RNDN);
  1076. }
  1077. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1078. inline void eval_multiply(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, long y)
  1079. {
  1080. if(y < 0)
  1081. {
  1082. mpfr_mul_ui(a.data(), x.data(), boost::multiprecision::detail::unsigned_abs(y), GMP_RNDN);
  1083. a.negate();
  1084. }
  1085. else
  1086. mpfr_mul_ui(a.data(), x.data(), y, GMP_RNDN);
  1087. }
  1088. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1089. inline void eval_multiply(mpfr_float_backend<D1, A1>& a, unsigned long x, const mpfr_float_backend<D2, A2>& y)
  1090. {
  1091. mpfr_mul_ui(a.data(), y.data(), x, GMP_RNDN);
  1092. }
  1093. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1094. inline void eval_multiply(mpfr_float_backend<D1, A1>& a, long x, const mpfr_float_backend<D2, A2>& y)
  1095. {
  1096. if(x < 0)
  1097. {
  1098. mpfr_mul_ui(a.data(), y.data(), boost::multiprecision::detail::unsigned_abs(x), GMP_RNDN);
  1099. mpfr_neg(a.data(), a.data(), GMP_RNDN);
  1100. }
  1101. else
  1102. mpfr_mul_ui(a.data(), y.data(), x, GMP_RNDN);
  1103. }
  1104. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2, unsigned D3>
  1105. inline void eval_divide(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, const mpfr_float_backend<D3>& y)
  1106. {
  1107. mpfr_div(a.data(), x.data(), y.data(), GMP_RNDN);
  1108. }
  1109. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1110. inline void eval_divide(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, unsigned long y)
  1111. {
  1112. mpfr_div_ui(a.data(), x.data(), y, GMP_RNDN);
  1113. }
  1114. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1115. inline void eval_divide(mpfr_float_backend<D1, A1>& a, const mpfr_float_backend<D2, A2>& x, long y)
  1116. {
  1117. if(y < 0)
  1118. {
  1119. mpfr_div_ui(a.data(), x.data(), boost::multiprecision::detail::unsigned_abs(y), GMP_RNDN);
  1120. a.negate();
  1121. }
  1122. else
  1123. mpfr_div_ui(a.data(), x.data(), y, GMP_RNDN);
  1124. }
  1125. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1126. inline void eval_divide(mpfr_float_backend<D1, A1>& a, unsigned long x, const mpfr_float_backend<D2, A2>& y)
  1127. {
  1128. mpfr_ui_div(a.data(), x, y.data(), GMP_RNDN);
  1129. }
  1130. template <unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1131. inline void eval_divide(mpfr_float_backend<D1, A1>& a, long x, const mpfr_float_backend<D2, A2>& y)
  1132. {
  1133. if(x < 0)
  1134. {
  1135. mpfr_ui_div(a.data(), boost::multiprecision::detail::unsigned_abs(x), y.data(), GMP_RNDN);
  1136. mpfr_neg(a.data(), a.data(), GMP_RNDN);
  1137. }
  1138. else
  1139. mpfr_ui_div(a.data(), x, y.data(), GMP_RNDN);
  1140. }
  1141. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1142. inline bool eval_is_zero(const mpfr_float_backend<digits10, AllocationType>& val) BOOST_NOEXCEPT
  1143. {
  1144. return 0 != mpfr_zero_p(val.data());
  1145. }
  1146. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1147. inline int eval_get_sign(const mpfr_float_backend<digits10, AllocationType>& val) BOOST_NOEXCEPT
  1148. {
  1149. return mpfr_sgn(val.data());
  1150. }
  1151. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1152. inline void eval_convert_to(unsigned long* result, const mpfr_float_backend<digits10, AllocationType>& val)
  1153. {
  1154. if(mpfr_nan_p(val.data()))
  1155. {
  1156. BOOST_THROW_EXCEPTION(std::runtime_error("Could not convert NaN to integer."));
  1157. }
  1158. *result = mpfr_get_ui(val.data(), GMP_RNDZ);
  1159. }
  1160. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1161. inline void eval_convert_to(long* result, const mpfr_float_backend<digits10, AllocationType>& val)
  1162. {
  1163. if(mpfr_nan_p(val.data()))
  1164. {
  1165. BOOST_THROW_EXCEPTION(std::runtime_error("Could not convert NaN to integer."));
  1166. }
  1167. *result = mpfr_get_si(val.data(), GMP_RNDZ);
  1168. }
  1169. #ifdef _MPFR_H_HAVE_INTMAX_T
  1170. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1171. inline void eval_convert_to(boost::ulong_long_type* result, const mpfr_float_backend<digits10, AllocationType>& val)
  1172. {
  1173. if(mpfr_nan_p(val.data()))
  1174. {
  1175. BOOST_THROW_EXCEPTION(std::runtime_error("Could not convert NaN to integer."));
  1176. }
  1177. *result = mpfr_get_uj(val.data(), GMP_RNDZ);
  1178. }
  1179. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1180. inline void eval_convert_to(boost::long_long_type* result, const mpfr_float_backend<digits10, AllocationType>& val)
  1181. {
  1182. if(mpfr_nan_p(val.data()))
  1183. {
  1184. BOOST_THROW_EXCEPTION(std::runtime_error("Could not convert NaN to integer."));
  1185. }
  1186. *result = mpfr_get_sj(val.data(), GMP_RNDZ);
  1187. }
  1188. #endif
  1189. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1190. inline void eval_convert_to(float* result, const mpfr_float_backend<digits10, AllocationType>& val) BOOST_NOEXCEPT
  1191. {
  1192. *result = mpfr_get_flt(val.data(), GMP_RNDN);
  1193. }
  1194. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1195. inline void eval_convert_to(double* result, const mpfr_float_backend<digits10, AllocationType>& val) BOOST_NOEXCEPT
  1196. {
  1197. *result = mpfr_get_d(val.data(), GMP_RNDN);
  1198. }
  1199. template <unsigned digits10, mpfr_allocation_type AllocationType>
  1200. inline void eval_convert_to(long double* result, const mpfr_float_backend<digits10, AllocationType>& val) BOOST_NOEXCEPT
  1201. {
  1202. *result = mpfr_get_ld(val.data(), GMP_RNDN);
  1203. }
  1204. //
  1205. // Native non-member operations:
  1206. //
  1207. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1208. inline void eval_sqrt(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1209. {
  1210. mpfr_sqrt(result.data(), val.data(), GMP_RNDN);
  1211. }
  1212. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1213. inline void eval_abs(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1214. {
  1215. mpfr_abs(result.data(), val.data(), GMP_RNDN);
  1216. }
  1217. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1218. inline void eval_fabs(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1219. {
  1220. mpfr_abs(result.data(), val.data(), GMP_RNDN);
  1221. }
  1222. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1223. inline void eval_ceil(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1224. {
  1225. mpfr_ceil(result.data(), val.data());
  1226. }
  1227. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1228. inline void eval_floor(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1229. {
  1230. mpfr_floor(result.data(), val.data());
  1231. }
  1232. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1233. inline void eval_trunc(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val)
  1234. {
  1235. if(0 == mpfr_number_p(val.data()))
  1236. {
  1237. result = boost::math::policies::raise_rounding_error("boost::multiprecision::trunc<%1%>(%1%)", 0, number<mpfr_float_backend<Digits10, AllocateType> >(val), number<mpfr_float_backend<Digits10, AllocateType> >(val), boost::math::policies::policy<>()).backend();
  1238. return;
  1239. }
  1240. mpfr_trunc(result.data(), val.data());
  1241. }
  1242. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1243. inline void eval_ldexp(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val, long e)
  1244. {
  1245. if(e > 0)
  1246. mpfr_mul_2exp(result.data(), val.data(), e, GMP_RNDN);
  1247. else if(e < 0)
  1248. mpfr_div_2exp(result.data(), val.data(), -e, GMP_RNDN);
  1249. else
  1250. result = val;
  1251. }
  1252. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1253. inline void eval_frexp(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val, int* e)
  1254. {
  1255. long v;
  1256. mpfr_get_d_2exp(&v, val.data(), GMP_RNDN);
  1257. *e = v;
  1258. eval_ldexp(result, val, -v);
  1259. }
  1260. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1261. inline void eval_frexp(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& val, long* e)
  1262. {
  1263. mpfr_get_d_2exp(e, val.data(), GMP_RNDN);
  1264. return eval_ldexp(result, val, -*e);
  1265. }
  1266. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1267. inline int eval_fpclassify(const mpfr_float_backend<Digits10, AllocateType>& val) BOOST_NOEXCEPT
  1268. {
  1269. return mpfr_inf_p(val.data()) ? FP_INFINITE : mpfr_nan_p(val.data()) ? FP_NAN : mpfr_zero_p(val.data()) ? FP_ZERO : FP_NORMAL;
  1270. }
  1271. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1272. inline void eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& b, const mpfr_float_backend<Digits10, AllocateType>& e)
  1273. {
  1274. mpfr_pow(result.data(), b.data(), e.data(), GMP_RNDN);
  1275. }
  1276. #ifdef BOOST_MSVC
  1277. //
  1278. // The enable_if usage below doesn't work with msvc - but only when
  1279. // certain other enable_if usages are defined first. It's a capricious
  1280. // and rather annoying compiler bug in other words....
  1281. //
  1282. # define BOOST_MP_ENABLE_IF_WORKAROUND (Digits10 || !Digits10) &&
  1283. #else
  1284. #define BOOST_MP_ENABLE_IF_WORKAROUND
  1285. #endif
  1286. template <unsigned Digits10, mpfr_allocation_type AllocateType, class Integer>
  1287. inline typename enable_if<mpl::and_<is_signed<Integer>, mpl::bool_<BOOST_MP_ENABLE_IF_WORKAROUND (sizeof(Integer) <= sizeof(long))> > >::type
  1288. eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& b, const Integer& e)
  1289. {
  1290. mpfr_pow_si(result.data(), b.data(), e, GMP_RNDN);
  1291. }
  1292. template <unsigned Digits10, mpfr_allocation_type AllocateType, class Integer>
  1293. inline typename enable_if<mpl::and_<is_unsigned<Integer>, mpl::bool_<BOOST_MP_ENABLE_IF_WORKAROUND (sizeof(Integer) <= sizeof(long))> > >::type
  1294. eval_pow(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& b, const Integer& e)
  1295. {
  1296. mpfr_pow_ui(result.data(), b.data(), e, GMP_RNDN);
  1297. }
  1298. #undef BOOST_MP_ENABLE_IF_WORKAROUND
  1299. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1300. inline void eval_exp(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1301. {
  1302. mpfr_exp(result.data(), arg.data(), GMP_RNDN);
  1303. }
  1304. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1305. inline void eval_log(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1306. {
  1307. mpfr_log(result.data(), arg.data(), GMP_RNDN);
  1308. }
  1309. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1310. inline void eval_log10(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1311. {
  1312. mpfr_log10(result.data(), arg.data(), GMP_RNDN);
  1313. }
  1314. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1315. inline void eval_sin(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1316. {
  1317. mpfr_sin(result.data(), arg.data(), GMP_RNDN);
  1318. }
  1319. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1320. inline void eval_cos(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1321. {
  1322. mpfr_cos(result.data(), arg.data(), GMP_RNDN);
  1323. }
  1324. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1325. inline void eval_tan(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1326. {
  1327. mpfr_tan(result.data(), arg.data(), GMP_RNDN);
  1328. }
  1329. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1330. inline void eval_asin(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1331. {
  1332. mpfr_asin(result.data(), arg.data(), GMP_RNDN);
  1333. }
  1334. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1335. inline void eval_acos(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1336. {
  1337. mpfr_acos(result.data(), arg.data(), GMP_RNDN);
  1338. }
  1339. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1340. inline void eval_atan(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1341. {
  1342. mpfr_atan(result.data(), arg.data(), GMP_RNDN);
  1343. }
  1344. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1345. inline void eval_atan2(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg1, const mpfr_float_backend<Digits10, AllocateType>& arg2)
  1346. {
  1347. mpfr_atan2(result.data(), arg1.data(), arg2.data(), GMP_RNDN);
  1348. }
  1349. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1350. inline void eval_sinh(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1351. {
  1352. mpfr_sinh(result.data(), arg.data(), GMP_RNDN);
  1353. }
  1354. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1355. inline void eval_cosh(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1356. {
  1357. mpfr_cosh(result.data(), arg.data(), GMP_RNDN);
  1358. }
  1359. template <unsigned Digits10, mpfr_allocation_type AllocateType>
  1360. inline void eval_tanh(mpfr_float_backend<Digits10, AllocateType>& result, const mpfr_float_backend<Digits10, AllocateType>& arg)
  1361. {
  1362. mpfr_tanh(result.data(), arg.data(), GMP_RNDN);
  1363. }
  1364. } // namespace backends
  1365. #ifdef BOOST_NO_SFINAE_EXPR
  1366. namespace detail{
  1367. template<unsigned D1, unsigned D2, mpfr_allocation_type A1, mpfr_allocation_type A2>
  1368. struct is_explicitly_convertible<backends::mpfr_float_backend<D1, A1>, backends::mpfr_float_backend<D2, A2> > : public mpl::true_ {};
  1369. }
  1370. #endif
  1371. template<>
  1372. struct number_category<detail::canonical<mpfr_t, backends::mpfr_float_backend<0> >::type> : public mpl::int_<number_kind_floating_point>{};
  1373. using boost::multiprecision::backends::mpfr_float_backend;
  1374. typedef number<mpfr_float_backend<50> > mpfr_float_50;
  1375. typedef number<mpfr_float_backend<100> > mpfr_float_100;
  1376. typedef number<mpfr_float_backend<500> > mpfr_float_500;
  1377. typedef number<mpfr_float_backend<1000> > mpfr_float_1000;
  1378. typedef number<mpfr_float_backend<0> > mpfr_float;
  1379. typedef number<mpfr_float_backend<50, allocate_stack> > static_mpfr_float_50;
  1380. typedef number<mpfr_float_backend<100, allocate_stack> > static_mpfr_float_100;
  1381. } // namespace multiprecision
  1382. namespace math{
  1383. namespace tools{
  1384. template <>
  1385. inline int digits<boost::multiprecision::mpfr_float>()
  1386. #ifdef BOOST_MATH_NOEXCEPT
  1387. BOOST_NOEXCEPT
  1388. #endif
  1389. {
  1390. return boost::multiprecision::backends::detail::get_default_precision();
  1391. }
  1392. template <>
  1393. inline int digits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off> >()
  1394. #ifdef BOOST_MATH_NOEXCEPT
  1395. BOOST_NOEXCEPT
  1396. #endif
  1397. {
  1398. return boost::multiprecision::backends::detail::get_default_precision();
  1399. }
  1400. template <>
  1401. inline boost::multiprecision::mpfr_float
  1402. max_value<boost::multiprecision::mpfr_float>()
  1403. {
  1404. boost::multiprecision::mpfr_float result(0.5);
  1405. mpfr_mul_2exp(result.backend().data(), result.backend().data(), mpfr_get_emax(), GMP_RNDN);
  1406. BOOST_ASSERT(mpfr_number_p(result.backend().data()));
  1407. return result;
  1408. }
  1409. template <>
  1410. inline boost::multiprecision::mpfr_float
  1411. min_value<boost::multiprecision::mpfr_float>()
  1412. {
  1413. boost::multiprecision::mpfr_float result(0.5);
  1414. mpfr_div_2exp(result.backend().data(), result.backend().data(), -mpfr_get_emin(), GMP_RNDN);
  1415. BOOST_ASSERT(mpfr_number_p(result.backend().data()));
  1416. return result;
  1417. }
  1418. template <>
  1419. inline boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off>
  1420. max_value<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off> >()
  1421. {
  1422. boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off> result(0.5);
  1423. mpfr_mul_2exp(result.backend().data(), result.backend().data(), mpfr_get_emax(), GMP_RNDN);
  1424. BOOST_ASSERT(mpfr_number_p(result.backend().data()));
  1425. return result;
  1426. }
  1427. template <>
  1428. inline boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off>
  1429. min_value<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off> >()
  1430. {
  1431. boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, boost::multiprecision::et_off> result(0.5);
  1432. mpfr_div_2exp(result.backend().data(), result.backend().data(), -mpfr_get_emin(), GMP_RNDN);
  1433. BOOST_ASSERT(mpfr_number_p(result.backend().data()));
  1434. return result;
  1435. }
  1436. } // namespace tools
  1437. namespace constants{ namespace detail{
  1438. template <class T> struct constant_pi;
  1439. template <class T> struct constant_ln_two;
  1440. template <class T> struct constant_euler;
  1441. template <class T> struct constant_catalan;
  1442. namespace detail{
  1443. template <class T, int N>
  1444. struct mpfr_constant_initializer
  1445. {
  1446. static void force_instantiate()
  1447. {
  1448. init.force_instantiate();
  1449. }
  1450. private:
  1451. struct initializer
  1452. {
  1453. initializer()
  1454. {
  1455. T::get(mpl::int_<N>());
  1456. }
  1457. void force_instantiate()const{}
  1458. };
  1459. static const initializer init;
  1460. };
  1461. template <class T, int N>
  1462. typename mpfr_constant_initializer<T, N>::initializer const mpfr_constant_initializer<T, N>::init;
  1463. }
  1464. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1465. struct constant_pi<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >
  1466. {
  1467. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> result_type;
  1468. template<int N>
  1469. static inline const result_type& get(const mpl::int_<N>&)
  1470. {
  1471. detail::mpfr_constant_initializer<constant_pi<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >, N>::force_instantiate();
  1472. static result_type result;
  1473. static bool has_init = false;
  1474. if(!has_init)
  1475. {
  1476. mpfr_const_pi(result.backend().data(), GMP_RNDN);
  1477. has_init = true;
  1478. }
  1479. return result;
  1480. }
  1481. };
  1482. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1483. struct constant_ln_two<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >
  1484. {
  1485. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> result_type;
  1486. template<int N>
  1487. static inline const result_type& get(const mpl::int_<N>&)
  1488. {
  1489. detail::mpfr_constant_initializer<constant_ln_two<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >, N>::force_instantiate();
  1490. static result_type result;
  1491. static bool init = false;
  1492. if(!init)
  1493. {
  1494. mpfr_const_log2(result.backend().data(), GMP_RNDN);
  1495. init = true;
  1496. }
  1497. return result;
  1498. }
  1499. };
  1500. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1501. struct constant_euler<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >
  1502. {
  1503. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> result_type;
  1504. template<int N>
  1505. static inline const result_type& get(const mpl::int_<N>&)
  1506. {
  1507. detail::mpfr_constant_initializer<constant_euler<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >, N>::force_instantiate();
  1508. static result_type result;
  1509. static bool init = false;
  1510. if(!init)
  1511. {
  1512. mpfr_const_euler(result.backend().data(), GMP_RNDN);
  1513. init = true;
  1514. }
  1515. return result;
  1516. }
  1517. };
  1518. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1519. struct constant_catalan<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >
  1520. {
  1521. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> result_type;
  1522. template<int N>
  1523. static inline const result_type& get(const mpl::int_<N>&)
  1524. {
  1525. detail::mpfr_constant_initializer<constant_catalan<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >, N>::force_instantiate();
  1526. static result_type result;
  1527. static bool init = false;
  1528. if(!init)
  1529. {
  1530. mpfr_const_catalan(result.backend().data(), GMP_RNDN);
  1531. init = true;
  1532. }
  1533. return result;
  1534. }
  1535. };
  1536. }} // namespaces
  1537. }} // namespaces
  1538. namespace std{
  1539. //
  1540. // numeric_limits [partial] specializations for the types declared in this header:
  1541. //
  1542. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1543. class numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >
  1544. {
  1545. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> number_type;
  1546. public:
  1547. BOOST_STATIC_CONSTEXPR bool is_specialized = true;
  1548. static number_type (min)()
  1549. {
  1550. initializer.do_nothing();
  1551. static std::pair<bool, number_type> value;
  1552. if(!value.first)
  1553. {
  1554. value.first = true;
  1555. value.second = 0.5;
  1556. mpfr_div_2exp(value.second.backend().data(), value.second.backend().data(), -mpfr_get_emin(), GMP_RNDN);
  1557. }
  1558. return value.second;
  1559. }
  1560. static number_type (max)()
  1561. {
  1562. initializer.do_nothing();
  1563. static std::pair<bool, number_type> value;
  1564. if(!value.first)
  1565. {
  1566. value.first = true;
  1567. value.second = 0.5;
  1568. mpfr_mul_2exp(value.second.backend().data(), value.second.backend().data(), mpfr_get_emax(), GMP_RNDN);
  1569. }
  1570. return value.second;
  1571. }
  1572. BOOST_STATIC_CONSTEXPR number_type lowest()
  1573. {
  1574. return -(max)();
  1575. }
  1576. BOOST_STATIC_CONSTEXPR int digits = static_cast<int>((Digits10 * 1000L) / 301L + ((Digits10 * 1000L) % 301 ? 2 : 1));
  1577. BOOST_STATIC_CONSTEXPR int digits10 = Digits10;
  1578. // Is this really correct???
  1579. BOOST_STATIC_CONSTEXPR int max_digits10 = Digits10 + 3;
  1580. BOOST_STATIC_CONSTEXPR bool is_signed = true;
  1581. BOOST_STATIC_CONSTEXPR bool is_integer = false;
  1582. BOOST_STATIC_CONSTEXPR bool is_exact = false;
  1583. BOOST_STATIC_CONSTEXPR int radix = 2;
  1584. static number_type epsilon()
  1585. {
  1586. initializer.do_nothing();
  1587. static std::pair<bool, number_type> value;
  1588. if(!value.first)
  1589. {
  1590. value.first = true;
  1591. value.second = 1;
  1592. mpfr_div_2exp(value.second.backend().data(), value.second.backend().data(), std::numeric_limits<number_type>::digits - 1, GMP_RNDN);
  1593. }
  1594. return value.second;
  1595. }
  1596. // What value should this be????
  1597. static number_type round_error()
  1598. {
  1599. // returns epsilon/2
  1600. initializer.do_nothing();
  1601. static std::pair<bool, number_type> value;
  1602. if(!value.first)
  1603. {
  1604. value.first = true;
  1605. value.second = 1;
  1606. mpfr_div_2exp(value.second.backend().data(), value.second.backend().data(), 1, GMP_RNDN);
  1607. }
  1608. return value.second;
  1609. }
  1610. BOOST_STATIC_CONSTEXPR long min_exponent = MPFR_EMIN_DEFAULT;
  1611. BOOST_STATIC_CONSTEXPR long min_exponent10 = (MPFR_EMIN_DEFAULT / 1000) * 301L;
  1612. BOOST_STATIC_CONSTEXPR long max_exponent = MPFR_EMAX_DEFAULT;
  1613. BOOST_STATIC_CONSTEXPR long max_exponent10 = (MPFR_EMAX_DEFAULT / 1000) * 301L;
  1614. BOOST_STATIC_CONSTEXPR bool has_infinity = true;
  1615. BOOST_STATIC_CONSTEXPR bool has_quiet_NaN = true;
  1616. BOOST_STATIC_CONSTEXPR bool has_signaling_NaN = false;
  1617. BOOST_STATIC_CONSTEXPR float_denorm_style has_denorm = denorm_absent;
  1618. BOOST_STATIC_CONSTEXPR bool has_denorm_loss = false;
  1619. static number_type infinity()
  1620. {
  1621. // returns epsilon/2
  1622. initializer.do_nothing();
  1623. static std::pair<bool, number_type> value;
  1624. if(!value.first)
  1625. {
  1626. value.first = true;
  1627. value.second = 1;
  1628. mpfr_set_inf(value.second.backend().data(), 1);
  1629. }
  1630. return value.second;
  1631. }
  1632. static number_type quiet_NaN()
  1633. {
  1634. // returns epsilon/2
  1635. initializer.do_nothing();
  1636. static std::pair<bool, number_type> value;
  1637. if(!value.first)
  1638. {
  1639. value.first = true;
  1640. value.second = 1;
  1641. mpfr_set_nan(value.second.backend().data());
  1642. }
  1643. return value.second;
  1644. }
  1645. BOOST_STATIC_CONSTEXPR number_type signaling_NaN()
  1646. {
  1647. return number_type(0);
  1648. }
  1649. BOOST_STATIC_CONSTEXPR number_type denorm_min() { return number_type(0); }
  1650. BOOST_STATIC_CONSTEXPR bool is_iec559 = false;
  1651. BOOST_STATIC_CONSTEXPR bool is_bounded = true;
  1652. BOOST_STATIC_CONSTEXPR bool is_modulo = false;
  1653. BOOST_STATIC_CONSTEXPR bool traps = true;
  1654. BOOST_STATIC_CONSTEXPR bool tinyness_before = false;
  1655. BOOST_STATIC_CONSTEXPR float_round_style round_style = round_to_nearest;
  1656. private:
  1657. struct data_initializer
  1658. {
  1659. data_initializer()
  1660. {
  1661. std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::epsilon();
  1662. std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::round_error();
  1663. (std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::min)();
  1664. (std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::max)();
  1665. std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::infinity();
  1666. std::numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<digits10, AllocateType> > >::quiet_NaN();
  1667. }
  1668. void do_nothing()const{}
  1669. };
  1670. static const data_initializer initializer;
  1671. };
  1672. template<unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1673. const typename numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::data_initializer numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::initializer;
  1674. #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  1675. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1676. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::digits;
  1677. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1678. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::digits10;
  1679. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1680. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::max_digits10;
  1681. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1682. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_signed;
  1683. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1684. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_integer;
  1685. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1686. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_exact;
  1687. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1688. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::radix;
  1689. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1690. BOOST_CONSTEXPR_OR_CONST long numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::min_exponent;
  1691. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1692. BOOST_CONSTEXPR_OR_CONST long numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::min_exponent10;
  1693. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1694. BOOST_CONSTEXPR_OR_CONST long numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::max_exponent;
  1695. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1696. BOOST_CONSTEXPR_OR_CONST long numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::max_exponent10;
  1697. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1698. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::has_infinity;
  1699. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1700. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::has_quiet_NaN;
  1701. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1702. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::has_signaling_NaN;
  1703. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1704. BOOST_CONSTEXPR_OR_CONST float_denorm_style numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::has_denorm;
  1705. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1706. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::has_denorm_loss;
  1707. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1708. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_iec559;
  1709. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1710. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_bounded;
  1711. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1712. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::is_modulo;
  1713. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1714. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::traps;
  1715. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1716. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::tinyness_before;
  1717. template <unsigned Digits10, boost::multiprecision::mpfr_allocation_type AllocateType, boost::multiprecision::expression_template_option ExpressionTemplates>
  1718. BOOST_CONSTEXPR_OR_CONST float_round_style numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<Digits10, AllocateType>, ExpressionTemplates> >::round_style;
  1719. #endif
  1720. template<boost::multiprecision::expression_template_option ExpressionTemplates>
  1721. class numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >
  1722. {
  1723. typedef boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> number_type;
  1724. public:
  1725. BOOST_STATIC_CONSTEXPR bool is_specialized = false;
  1726. static number_type (min)() { return number_type(0); }
  1727. static number_type (max)() { return number_type(0); }
  1728. static number_type lowest() { return number_type(0); }
  1729. BOOST_STATIC_CONSTEXPR int digits = 0;
  1730. BOOST_STATIC_CONSTEXPR int digits10 = 0;
  1731. BOOST_STATIC_CONSTEXPR int max_digits10 = 0;
  1732. BOOST_STATIC_CONSTEXPR bool is_signed = false;
  1733. BOOST_STATIC_CONSTEXPR bool is_integer = false;
  1734. BOOST_STATIC_CONSTEXPR bool is_exact = false;
  1735. BOOST_STATIC_CONSTEXPR int radix = 0;
  1736. static number_type epsilon() { return number_type(0); }
  1737. static number_type round_error() { return number_type(0); }
  1738. BOOST_STATIC_CONSTEXPR int min_exponent = 0;
  1739. BOOST_STATIC_CONSTEXPR int min_exponent10 = 0;
  1740. BOOST_STATIC_CONSTEXPR int max_exponent = 0;
  1741. BOOST_STATIC_CONSTEXPR int max_exponent10 = 0;
  1742. BOOST_STATIC_CONSTEXPR bool has_infinity = false;
  1743. BOOST_STATIC_CONSTEXPR bool has_quiet_NaN = false;
  1744. BOOST_STATIC_CONSTEXPR bool has_signaling_NaN = false;
  1745. BOOST_STATIC_CONSTEXPR float_denorm_style has_denorm = denorm_absent;
  1746. BOOST_STATIC_CONSTEXPR bool has_denorm_loss = false;
  1747. static number_type infinity() { return number_type(0); }
  1748. static number_type quiet_NaN() { return number_type(0); }
  1749. static number_type signaling_NaN() { return number_type(0); }
  1750. static number_type denorm_min() { return number_type(0); }
  1751. BOOST_STATIC_CONSTEXPR bool is_iec559 = false;
  1752. BOOST_STATIC_CONSTEXPR bool is_bounded = false;
  1753. BOOST_STATIC_CONSTEXPR bool is_modulo = false;
  1754. BOOST_STATIC_CONSTEXPR bool traps = false;
  1755. BOOST_STATIC_CONSTEXPR bool tinyness_before = false;
  1756. BOOST_STATIC_CONSTEXPR float_round_style round_style = round_toward_zero;
  1757. };
  1758. #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  1759. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1760. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::digits;
  1761. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1762. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::digits10;
  1763. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1764. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::max_digits10;
  1765. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1766. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_signed;
  1767. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1768. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_integer;
  1769. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1770. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_exact;
  1771. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1772. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::radix;
  1773. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1774. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::min_exponent;
  1775. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1776. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::min_exponent10;
  1777. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1778. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::max_exponent;
  1779. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1780. BOOST_CONSTEXPR_OR_CONST int numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::max_exponent10;
  1781. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1782. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::has_infinity;
  1783. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1784. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::has_quiet_NaN;
  1785. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1786. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::has_signaling_NaN;
  1787. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1788. BOOST_CONSTEXPR_OR_CONST float_denorm_style numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::has_denorm;
  1789. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1790. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::has_denorm_loss;
  1791. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1792. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_iec559;
  1793. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1794. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_bounded;
  1795. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1796. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::is_modulo;
  1797. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1798. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::traps;
  1799. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1800. BOOST_CONSTEXPR_OR_CONST bool numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::tinyness_before;
  1801. template <boost::multiprecision::expression_template_option ExpressionTemplates>
  1802. BOOST_CONSTEXPR_OR_CONST float_round_style numeric_limits<boost::multiprecision::number<boost::multiprecision::mpfr_float_backend<0>, ExpressionTemplates> >::round_style;
  1803. #endif
  1804. } // namespace std
  1805. #endif