logged_adaptor.hpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. ///////////////////////////////////////////////////////////////
  2. // Copyright 2012 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_
  5. #ifndef BOOST_MATH_LOGGED_ADAPTER_HPP
  6. #define BOOST_MATH_LOGGED_ADAPTER_HPP
  7. #include <boost/multiprecision/traits/extract_exponent_type.hpp>
  8. #include <boost/multiprecision/detail/integer_ops.hpp>
  9. namespace boost{
  10. namespace multiprecision{
  11. template <class Backend>
  12. inline void log_postfix_event(const Backend&, const char* /*event_description*/)
  13. {
  14. }
  15. template <class Backend, class T>
  16. inline void log_postfix_event(const Backend&, const T&, const char* /*event_description*/)
  17. {
  18. }
  19. template <class Backend>
  20. inline void log_prefix_event(const Backend&, const char* /*event_description*/)
  21. {
  22. }
  23. template <class Backend, class T>
  24. inline void log_prefix_event(const Backend&, const T&, const char* /*event_description*/)
  25. {
  26. }
  27. template <class Backend, class T, class U>
  28. inline void log_prefix_event(const Backend&, const T&, const U&, const char* /*event_description*/)
  29. {
  30. }
  31. template <class Backend, class T, class U, class V>
  32. inline void log_prefix_event(const Backend&, const T&, const U&, const V&, const char* /*event_description*/)
  33. {
  34. }
  35. namespace backends{
  36. template <class Backend>
  37. struct logged_adaptor
  38. {
  39. typedef typename Backend::signed_types signed_types;
  40. typedef typename Backend::unsigned_types unsigned_types;
  41. typedef typename Backend::float_types float_types;
  42. typedef typename extract_exponent_type<
  43. Backend, number_category<Backend>::value>::type exponent_type;
  44. private:
  45. Backend m_value;
  46. public:
  47. logged_adaptor()
  48. {
  49. log_postfix_event(m_value, "Default construct");
  50. }
  51. logged_adaptor(const logged_adaptor& o)
  52. {
  53. log_prefix_event(m_value, o.value(), "Copy construct");
  54. m_value = o.m_value;
  55. log_postfix_event(m_value, "Copy construct");
  56. }
  57. logged_adaptor& operator = (const logged_adaptor& o)
  58. {
  59. log_prefix_event(m_value, o.value(), "Assignment");
  60. m_value = o.m_value;
  61. log_postfix_event(m_value, "Copy construct");
  62. return *this;
  63. }
  64. template <class T>
  65. logged_adaptor(const T& i, const typename enable_if_c<is_convertible<T, Backend>::value>::type* = 0)
  66. : m_value(i)
  67. {
  68. log_postfix_event(m_value, "construct from arithmetic type");
  69. }
  70. template <class T>
  71. typename enable_if_c<is_arithmetic<T>::value || is_convertible<T, Backend>::value, logged_adaptor&>::type operator = (const T& i)
  72. {
  73. log_prefix_event(m_value, i, "Assignment from arithmetic type");
  74. m_value = i;
  75. log_postfix_event(m_value, "Assignment from arithmetic type");
  76. return *this;
  77. }
  78. logged_adaptor& operator = (const char* s)
  79. {
  80. log_prefix_event(m_value, s, "Assignment from string type");
  81. m_value = s;
  82. log_postfix_event(m_value, "Assignment from string type");
  83. return *this;
  84. }
  85. void swap(logged_adaptor& o)
  86. {
  87. log_prefix_event(m_value, o.value(), "swap");
  88. std::swap(m_value, o.value());
  89. log_postfix_event(m_value, "swap");
  90. }
  91. std::string str(std::streamsize digits, std::ios_base::fmtflags f)const
  92. {
  93. log_prefix_event(m_value, "Conversion to string");
  94. std::string s = m_value.str(digits, f);
  95. log_postfix_event(m_value, s, "Conversion to string");
  96. return s;
  97. }
  98. void negate()
  99. {
  100. log_prefix_event(m_value, "negate");
  101. m_value.negate();
  102. log_postfix_event(m_value, "negate");
  103. }
  104. int compare(const logged_adaptor& o)const
  105. {
  106. log_prefix_event(m_value, o.value(), "compare");
  107. int r = m_value.compare(o.value());
  108. log_postfix_event(m_value, r, "compare");
  109. return r;
  110. }
  111. template <class T>
  112. int compare(const T& i)const
  113. {
  114. log_prefix_event(m_value, i, "compare");
  115. int r = m_value.compare(i);
  116. log_postfix_event(m_value, r, "compare");
  117. return r;
  118. }
  119. Backend& value()
  120. {
  121. return m_value;
  122. }
  123. const Backend& value()const
  124. {
  125. return m_value;
  126. }
  127. template <class Archive>
  128. void serialize(Archive& ar, const unsigned int /*version*/)
  129. {
  130. log_prefix_event(m_value, "serialize");
  131. ar & m_value;
  132. log_postfix_event(m_value, "serialize");
  133. }
  134. };
  135. template <class T>
  136. inline const T& unwrap_logged_type(const T& a) { return a; }
  137. template <class Backend>
  138. inline const Backend& unwrap_logged_type(const logged_adaptor<Backend>& a) { return a.value(); }
  139. #define NON_MEMBER_OP1(name, str) \
  140. template <class Backend>\
  141. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result)\
  142. {\
  143. using default_ops::BOOST_JOIN(eval_, name);\
  144. log_prefix_event(result.value(), str);\
  145. BOOST_JOIN(eval_, name)(result.value());\
  146. log_postfix_event(result.value(), str);\
  147. }
  148. #define NON_MEMBER_OP2(name, str) \
  149. template <class Backend, class T>\
  150. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const T& a)\
  151. {\
  152. using default_ops::BOOST_JOIN(eval_, name);\
  153. log_prefix_event(result.value(), unwrap_logged_type(a), str);\
  154. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a));\
  155. log_postfix_event(result.value(), str);\
  156. }\
  157. template <class Backend>\
  158. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a)\
  159. {\
  160. using default_ops::BOOST_JOIN(eval_, name);\
  161. log_prefix_event(result.value(), unwrap_logged_type(a), str);\
  162. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a));\
  163. log_postfix_event(result.value(), str);\
  164. }
  165. #define NON_MEMBER_OP3(name, str) \
  166. template <class Backend, class T, class U>\
  167. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const T& a, const U& b)\
  168. {\
  169. using default_ops::BOOST_JOIN(eval_, name);\
  170. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), str);\
  171. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b));\
  172. log_postfix_event(result.value(), str);\
  173. }\
  174. template <class Backend, class T>\
  175. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const T& b)\
  176. {\
  177. using default_ops::BOOST_JOIN(eval_, name);\
  178. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), str);\
  179. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b));\
  180. log_postfix_event(result.value(), str);\
  181. }\
  182. template <class Backend, class T>\
  183. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const T& a, const logged_adaptor<Backend>& b)\
  184. {\
  185. using default_ops::BOOST_JOIN(eval_, name);\
  186. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), str);\
  187. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b));\
  188. log_postfix_event(result.value(), str);\
  189. }\
  190. template <class Backend>\
  191. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const logged_adaptor<Backend>& b)\
  192. {\
  193. using default_ops::BOOST_JOIN(eval_, name);\
  194. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), str);\
  195. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b));\
  196. log_postfix_event(result.value(), str);\
  197. }
  198. #define NON_MEMBER_OP4(name, str) \
  199. template <class Backend, class T, class U, class V>\
  200. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const T& a, const U& b, const V& c)\
  201. {\
  202. using default_ops::BOOST_JOIN(eval_, name);\
  203. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  204. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  205. log_postfix_event(result.value(), str);\
  206. }\
  207. template <class Backend, class T>\
  208. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const logged_adaptor<Backend>& b, const T& c)\
  209. {\
  210. using default_ops::BOOST_JOIN(eval_, name);\
  211. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  212. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  213. log_postfix_event(result.value(), str);\
  214. }\
  215. template <class Backend, class T>\
  216. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const T& b, const logged_adaptor<Backend>& c)\
  217. {\
  218. using default_ops::BOOST_JOIN(eval_, name);\
  219. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  220. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  221. log_postfix_event(result.value(), str);\
  222. }\
  223. template <class Backend, class T>\
  224. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const T& a, const logged_adaptor<Backend>& b, const logged_adaptor<Backend>& c)\
  225. {\
  226. using default_ops::BOOST_JOIN(eval_, name);\
  227. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  228. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  229. log_postfix_event(result.value(), str);\
  230. }\
  231. template <class Backend>\
  232. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const logged_adaptor<Backend>& b, const logged_adaptor<Backend>& c)\
  233. {\
  234. using default_ops::BOOST_JOIN(eval_, name);\
  235. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  236. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  237. log_postfix_event(result.value(), str);\
  238. }\
  239. template <class Backend, class T, class U>\
  240. inline void BOOST_JOIN(eval_, name)(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& a, const T& b, const U& c)\
  241. {\
  242. using default_ops::BOOST_JOIN(eval_, name);\
  243. log_prefix_event(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c), str);\
  244. BOOST_JOIN(eval_, name)(result.value(), unwrap_logged_type(a), unwrap_logged_type(b), unwrap_logged_type(c));\
  245. log_postfix_event(result.value(), str);\
  246. }\
  247. NON_MEMBER_OP2(add, "+=");
  248. NON_MEMBER_OP2(subtract, "-=");
  249. NON_MEMBER_OP2(multiply, "*=");
  250. NON_MEMBER_OP2(divide, "/=");
  251. template <class Backend, class R>
  252. inline void eval_convert_to(R* result, const logged_adaptor<Backend>& val)
  253. {
  254. using default_ops::eval_convert_to;
  255. log_prefix_event(val.value(), "convert_to");
  256. eval_convert_to(result, val.value());
  257. log_postfix_event(val.value(), *result, "convert_to");
  258. }
  259. template <class Backend, class Exp>
  260. inline void eval_frexp(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& arg, Exp* exp)
  261. {
  262. log_prefix_event(arg.value(), "frexp");
  263. eval_frexp(result.value(), arg.value(), exp);
  264. log_postfix_event(result.value(), *exp, "frexp");
  265. }
  266. template <class Backend, class Exp>
  267. inline void eval_ldexp(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& arg, Exp exp)
  268. {
  269. log_prefix_event(arg.value(), "ldexp");
  270. eval_ldexp(result.value(), arg.value(), exp);
  271. log_postfix_event(result.value(), exp, "ldexp");
  272. }
  273. template <class Backend, class Exp>
  274. inline void eval_scalbn(logged_adaptor<Backend>& result, const logged_adaptor<Backend>& arg, Exp exp)
  275. {
  276. log_prefix_event(arg.value(), "scalbn");
  277. eval_scalbn(result.value(), arg.value(), exp);
  278. log_postfix_event(result.value(), exp, "scalbn");
  279. }
  280. template <class Backend>
  281. inline typename Backend::exponent_type eval_ilogb(const logged_adaptor<Backend>& arg)
  282. {
  283. log_prefix_event(arg.value(), "ilogb");
  284. typename Backend::exponent_type r = eval_ilogb(arg.value());
  285. log_postfix_event(arg.value(), "ilogb");
  286. return r;
  287. }
  288. NON_MEMBER_OP2(floor, "floor");
  289. NON_MEMBER_OP2(ceil, "ceil");
  290. NON_MEMBER_OP2(sqrt, "sqrt");
  291. template <class Backend>
  292. inline int eval_fpclassify(const logged_adaptor<Backend>& arg)
  293. {
  294. using default_ops::eval_fpclassify;
  295. log_prefix_event(arg.value(), "fpclassify");
  296. int r = eval_fpclassify(arg.value());
  297. log_postfix_event(arg.value(), r, "fpclassify");
  298. return r;
  299. }
  300. /*********************************************************************
  301. *
  302. * Optional arithmetic operations come next:
  303. *
  304. *********************************************************************/
  305. NON_MEMBER_OP3(add, "+");
  306. NON_MEMBER_OP3(subtract, "-");
  307. NON_MEMBER_OP3(multiply, "*");
  308. NON_MEMBER_OP3(divide, "/");
  309. NON_MEMBER_OP3(multiply_add, "fused-multiply-add");
  310. NON_MEMBER_OP3(multiply_subtract, "fused-multiply-subtract");
  311. NON_MEMBER_OP4(multiply_add, "fused-multiply-add");
  312. NON_MEMBER_OP4(multiply_subtract, "fused-multiply-subtract");
  313. NON_MEMBER_OP1(increment, "increment");
  314. NON_MEMBER_OP1(decrement, "decrement");
  315. /*********************************************************************
  316. *
  317. * Optional integer operations come next:
  318. *
  319. *********************************************************************/
  320. NON_MEMBER_OP2(modulus, "%=");
  321. NON_MEMBER_OP3(modulus, "%");
  322. NON_MEMBER_OP2(bitwise_or, "|=");
  323. NON_MEMBER_OP3(bitwise_or, "|");
  324. NON_MEMBER_OP2(bitwise_and, "&=");
  325. NON_MEMBER_OP3(bitwise_and, "&");
  326. NON_MEMBER_OP2(bitwise_xor, "^=");
  327. NON_MEMBER_OP3(bitwise_xor, "^");
  328. NON_MEMBER_OP4(qr, "quotient-and-remainder");
  329. NON_MEMBER_OP2(complement, "~");
  330. template <class Backend>
  331. inline void eval_left_shift(logged_adaptor<Backend>& arg, unsigned a)
  332. {
  333. using default_ops::eval_left_shift;
  334. log_prefix_event(arg.value(), a, "<<=");
  335. eval_left_shift(arg.value(), a);
  336. log_postfix_event(arg.value(), "<<=");
  337. }
  338. template <class Backend>
  339. inline void eval_left_shift(logged_adaptor<Backend>& arg, const logged_adaptor<Backend>& a, unsigned b)
  340. {
  341. using default_ops::eval_left_shift;
  342. log_prefix_event(arg.value(), a, b, "<<");
  343. eval_left_shift(arg.value(), a.value(), b);
  344. log_postfix_event(arg.value(), "<<");
  345. }
  346. template <class Backend>
  347. inline void eval_right_shift(logged_adaptor<Backend>& arg, unsigned a)
  348. {
  349. using default_ops::eval_right_shift;
  350. log_prefix_event(arg.value(), a, ">>=");
  351. eval_right_shift(arg.value(), a);
  352. log_postfix_event(arg.value(), ">>=");
  353. }
  354. template <class Backend>
  355. inline void eval_right_shift(logged_adaptor<Backend>& arg, const logged_adaptor<Backend>& a, unsigned b)
  356. {
  357. using default_ops::eval_right_shift;
  358. log_prefix_event(arg.value(), a, b, ">>");
  359. eval_right_shift(arg.value(), a.value(), b);
  360. log_postfix_event(arg.value(), ">>");
  361. }
  362. template <class Backend, class T>
  363. inline unsigned eval_integer_modulus(const logged_adaptor<Backend>& arg, const T& a)
  364. {
  365. using default_ops::eval_integer_modulus;
  366. log_prefix_event(arg.value(), a, "integer-modulus");
  367. unsigned r = eval_integer_modulus(arg.value(), a);
  368. log_postfix_event(arg.value(), r, "integer-modulus");
  369. return r;
  370. }
  371. template <class Backend>
  372. inline unsigned eval_lsb(const logged_adaptor<Backend>& arg)
  373. {
  374. using default_ops::eval_lsb;
  375. log_prefix_event(arg.value(), "least-significant-bit");
  376. unsigned r = eval_lsb(arg.value());
  377. log_postfix_event(arg.value(), r, "least-significant-bit");
  378. return r;
  379. }
  380. template <class Backend>
  381. inline unsigned eval_msb(const logged_adaptor<Backend>& arg)
  382. {
  383. using default_ops::eval_msb;
  384. log_prefix_event(arg.value(), "most-significant-bit");
  385. unsigned r = eval_msb(arg.value());
  386. log_postfix_event(arg.value(), r, "most-significant-bit");
  387. return r;
  388. }
  389. template <class Backend>
  390. inline bool eval_bit_test(const logged_adaptor<Backend>& arg, unsigned a)
  391. {
  392. using default_ops::eval_bit_test;
  393. log_prefix_event(arg.value(), a, "bit-test");
  394. bool r = eval_bit_test(arg.value(), a);
  395. log_postfix_event(arg.value(), r, "bit-test");
  396. return r;
  397. }
  398. template <class Backend>
  399. inline void eval_bit_set(const logged_adaptor<Backend>& arg, unsigned a)
  400. {
  401. using default_ops::eval_bit_set;
  402. log_prefix_event(arg.value(), a, "bit-set");
  403. eval_bit_set(arg.value(), a);
  404. log_postfix_event(arg.value(), arg, "bit-set");
  405. }
  406. template <class Backend>
  407. inline void eval_bit_unset(const logged_adaptor<Backend>& arg, unsigned a)
  408. {
  409. using default_ops::eval_bit_unset;
  410. log_prefix_event(arg.value(), a, "bit-unset");
  411. eval_bit_unset(arg.value(), a);
  412. log_postfix_event(arg.value(), arg, "bit-unset");
  413. }
  414. template <class Backend>
  415. inline void eval_bit_flip(const logged_adaptor<Backend>& arg, unsigned a)
  416. {
  417. using default_ops::eval_bit_flip;
  418. log_prefix_event(arg.value(), a, "bit-flip");
  419. eval_bit_flip(arg.value(), a);
  420. log_postfix_event(arg.value(), arg, "bit-flip");
  421. }
  422. NON_MEMBER_OP3(gcd, "gcd");
  423. NON_MEMBER_OP3(lcm, "lcm");
  424. NON_MEMBER_OP4(powm, "powm");
  425. /*********************************************************************
  426. *
  427. * abs/fabs:
  428. *
  429. *********************************************************************/
  430. NON_MEMBER_OP2(abs, "abs");
  431. NON_MEMBER_OP2(fabs, "fabs");
  432. /*********************************************************************
  433. *
  434. * Floating point functions:
  435. *
  436. *********************************************************************/
  437. NON_MEMBER_OP2(trunc, "trunc");
  438. NON_MEMBER_OP2(round, "round");
  439. NON_MEMBER_OP2(exp, "exp");
  440. NON_MEMBER_OP2(log, "log");
  441. NON_MEMBER_OP2(log10, "log10");
  442. NON_MEMBER_OP2(sin, "sin");
  443. NON_MEMBER_OP2(cos, "cos");
  444. NON_MEMBER_OP2(tan, "tan");
  445. NON_MEMBER_OP2(asin, "asin");
  446. NON_MEMBER_OP2(acos, "acos");
  447. NON_MEMBER_OP2(atan, "atan");
  448. NON_MEMBER_OP2(sinh, "sinh");
  449. NON_MEMBER_OP2(cosh, "cosh");
  450. NON_MEMBER_OP2(tanh, "tanh");
  451. NON_MEMBER_OP2(logb, "logb");
  452. NON_MEMBER_OP3(fmod, "fmod");
  453. NON_MEMBER_OP3(pow, "pow");
  454. NON_MEMBER_OP3(atan2, "atan2");
  455. } // namespace backends
  456. using backends::logged_adaptor;
  457. template<class Backend>
  458. struct number_category<backends::logged_adaptor<Backend> > : public number_category<Backend> {};
  459. }} // namespaces
  460. namespace std{
  461. template <class Backend, boost::multiprecision::expression_template_option ExpressionTemplates>
  462. class numeric_limits<boost::multiprecision::number<boost::multiprecision::backends::logged_adaptor<Backend>, ExpressionTemplates> >
  463. : public std::numeric_limits<boost::multiprecision::number<Backend, ExpressionTemplates> >
  464. {
  465. typedef std::numeric_limits<boost::multiprecision::number<Backend, ExpressionTemplates> > base_type;
  466. typedef boost::multiprecision::number<boost::multiprecision::backends::logged_adaptor<Backend>, ExpressionTemplates> number_type;
  467. public:
  468. static number_type (min)() BOOST_NOEXCEPT { return (base_type::min)(); }
  469. static number_type (max)() BOOST_NOEXCEPT { return (base_type::max)(); }
  470. static number_type lowest() BOOST_NOEXCEPT { return -(max)(); }
  471. static number_type epsilon() BOOST_NOEXCEPT { return base_type::epsilon(); }
  472. static number_type round_error() BOOST_NOEXCEPT { return epsilon() / 2; }
  473. static number_type infinity() BOOST_NOEXCEPT { return base_type::infinity(); }
  474. static number_type quiet_NaN() BOOST_NOEXCEPT { return base_type::quiet_NaN(); }
  475. static number_type signaling_NaN() BOOST_NOEXCEPT { return base_type::signaling_NaN(); }
  476. static number_type denorm_min() BOOST_NOEXCEPT { return base_type::denorm_min(); }
  477. };
  478. } // namespace std
  479. namespace boost{ namespace math{
  480. namespace policies{
  481. template <class Backend, boost::multiprecision::expression_template_option ExpressionTemplates, class Policy>
  482. struct precision< boost::multiprecision::number<boost::multiprecision::logged_adaptor<Backend>, ExpressionTemplates>, Policy>
  483. : public precision<boost::multiprecision::number<Backend, ExpressionTemplates>, Policy>
  484. {};
  485. } // namespace policies
  486. }} // namespaces boost::math
  487. #undef NON_MEMBER_OP1
  488. #undef NON_MEMBER_OP2
  489. #undef NON_MEMBER_OP3
  490. #undef NON_MEMBER_OP4
  491. #endif