comparison.hpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  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. //
  6. // Comparison operators for cpp_int_backend:
  7. //
  8. #ifndef BOOST_MP_CPP_INT_COMPARISON_HPP
  9. #define BOOST_MP_CPP_INT_COMPARISON_HPP
  10. #include <boost/type_traits/make_unsigned.hpp>
  11. namespace boost{ namespace multiprecision{ namespace backends{
  12. #ifdef BOOST_MSVC
  13. #pragma warning(push)
  14. #pragma warning(disable:4018 4389 4996)
  15. #endif
  16. //
  17. // Start with non-trivial cpp_int's:
  18. //
  19. template <unsigned MinBits, unsigned MaxBits, cpp_integer_type SignType, cpp_int_check_type Checked, class Allocator>
  20. BOOST_MP_FORCEINLINE typename enable_if_c<
  21. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, SignType, Checked, Allocator> >::value,
  22. bool
  23. >::type
  24. eval_eq(const cpp_int_backend<MinBits, MaxBits, SignType, Checked, Allocator>& a, const cpp_int_backend<MinBits, MaxBits, SignType, Checked, Allocator>& b) BOOST_NOEXCEPT
  25. {
  26. #if BOOST_WORKAROUND(BOOST_MSVC, >= 1600)
  27. return (a.sign() == b.sign())
  28. && (a.size() == b.size())
  29. && std::equal(a.limbs(), a.limbs() + a.size(),
  30. stdext::checked_array_iterator<cpp_int_backend<MinBits, MaxBits, SignType, Checked, Allocator>::const_limb_pointer>(b.limbs(), b.size()));
  31. #else
  32. return (a.sign() == b.sign())
  33. && (a.size() == b.size())
  34. && std::equal(a.limbs(), a.limbs() + a.size(), b.limbs());
  35. #endif
  36. }
  37. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  38. BOOST_MP_FORCEINLINE typename enable_if_c<
  39. !is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  40. && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value,
  41. bool
  42. >::type
  43. eval_eq(const cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& a, const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& b) BOOST_NOEXCEPT
  44. {
  45. #if BOOST_WORKAROUND(BOOST_MSVC, >= 1600)
  46. return (a.sign() == b.sign())
  47. && (a.size() == b.size())
  48. && std::equal(a.limbs(), a.limbs() + a.size(), stdext::checked_array_iterator<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>::const_limb_pointer>(b.limbs(), b.size()));
  49. #else
  50. return (a.sign() == b.sign())
  51. && (a.size() == b.size())
  52. && std::equal(a.limbs(), a.limbs() + a.size(), b.limbs());
  53. #endif
  54. }
  55. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  56. BOOST_MP_FORCEINLINE typename enable_if_c<
  57. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator> >::value,
  58. bool
  59. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  60. {
  61. return (a.sign() == false)
  62. && (a.size() == 1)
  63. && (*a.limbs() == b);
  64. }
  65. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  66. BOOST_MP_FORCEINLINE typename enable_if_c<
  67. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator> >::value,
  68. bool
  69. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  70. {
  71. return (a.sign() == (b < 0))
  72. && (a.size() == 1)
  73. && (*a.limbs() == boost::multiprecision::detail::unsigned_abs(b));
  74. }
  75. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  76. BOOST_MP_FORCEINLINE typename enable_if_c<
  77. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  78. bool
  79. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  80. {
  81. return (a.size() == 1)
  82. && (*a.limbs() == b);
  83. }
  84. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  85. BOOST_MP_FORCEINLINE typename enable_if_c<
  86. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  87. bool
  88. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  89. {
  90. return (b < 0) ? eval_eq(a, cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>(b)) : eval_eq(a, static_cast<limb_type>(b)); // Use bit pattern of b for comparison
  91. }
  92. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  93. BOOST_MP_FORCEINLINE typename enable_if_c<
  94. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator> >::value,
  95. bool
  96. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  97. {
  98. if(a.sign())
  99. return true;
  100. if(a.size() > 1)
  101. return false;
  102. return *a.limbs() < b;
  103. }
  104. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  105. inline typename enable_if_c<
  106. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator> >::value,
  107. bool
  108. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  109. {
  110. if((b == 0) || (a.sign() != (b < 0)))
  111. return a.sign();
  112. if(a.sign())
  113. {
  114. if(a.size() > 1)
  115. return true;
  116. return *a.limbs() > boost::multiprecision::detail::unsigned_abs(b);
  117. }
  118. else
  119. {
  120. if(a.size() > 1)
  121. return false;
  122. return *a.limbs() < boost::multiprecision::detail::unsigned_abs(b);
  123. }
  124. }
  125. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  126. BOOST_MP_FORCEINLINE typename enable_if_c<
  127. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  128. bool
  129. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  130. {
  131. if(a.size() > 1)
  132. return false;
  133. return *a.limbs() < b;
  134. }
  135. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  136. BOOST_MP_FORCEINLINE typename enable_if_c<
  137. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  138. bool
  139. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  140. {
  141. return (b < 0) ? a.compare(b) < 0 : eval_lt(a, static_cast<limb_type>(b)); // Use bit pattern of b for comparison
  142. }
  143. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  144. BOOST_MP_FORCEINLINE typename enable_if_c<
  145. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator> >::value,
  146. bool
  147. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  148. {
  149. if(a.sign())
  150. return false;
  151. if(a.size() > 1)
  152. return true;
  153. return *a.limbs() > b;
  154. }
  155. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  156. inline typename enable_if_c<
  157. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  158. bool
  159. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  160. {
  161. if(b == 0)
  162. return !a.sign() && ((a.size() > 1) || *a.limbs());
  163. if(a.sign() != (b < 0))
  164. return !a.sign();
  165. if(a.sign())
  166. {
  167. if(a.size() > 1)
  168. return false;
  169. return *a.limbs() < boost::multiprecision::detail::unsigned_abs(b);
  170. }
  171. else
  172. {
  173. if(a.size() > 1)
  174. return true;
  175. return *a.limbs() > boost::multiprecision::detail::unsigned_abs(b);
  176. }
  177. }
  178. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  179. BOOST_MP_FORCEINLINE typename enable_if_c<
  180. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  181. bool
  182. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, limb_type b) BOOST_NOEXCEPT
  183. {
  184. if(a.size() > 1)
  185. return true;
  186. return *a.limbs() > b;
  187. }
  188. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class Allocator>
  189. BOOST_MP_FORCEINLINE typename enable_if_c<
  190. !is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator> >::value,
  191. bool
  192. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, Allocator>& a, signed_limb_type b) BOOST_NOEXCEPT
  193. {
  194. return (b < 0) ? a.compare(b) > 0 : eval_gt(a, static_cast<limb_type>(b)); // Use bit pattern of b for comparison.
  195. }
  196. //
  197. // And again for trivial cpp_ints:
  198. //
  199. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  200. BOOST_MP_FORCEINLINE typename enable_if_c<
  201. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  202. bool
  203. >::value eval_eq(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  204. {
  205. return (a.sign() == b.sign()) && (*a.limbs() == *b.limbs());
  206. }
  207. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  208. BOOST_MP_FORCEINLINE typename enable_if_c<
  209. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  210. bool
  211. >::value eval_eq(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  212. {
  213. return *a.limbs() == *b.limbs();
  214. }
  215. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  216. BOOST_MP_FORCEINLINE typename enable_if_c<
  217. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  218. bool
  219. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  220. {
  221. return !a.sign() && (*a.limbs() == b);
  222. }
  223. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  224. BOOST_MP_FORCEINLINE typename enable_if_c<
  225. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  226. bool
  227. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  228. {
  229. return (a.sign() == (b < 0)) && (*a.limbs() == boost::multiprecision::detail::unsigned_abs(b));
  230. }
  231. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  232. BOOST_MP_FORCEINLINE typename enable_if_c<
  233. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  234. bool
  235. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  236. {
  237. return *a.limbs() == b;
  238. }
  239. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  240. BOOST_MP_FORCEINLINE typename enable_if_c<
  241. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  242. bool
  243. >::type eval_eq(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  244. {
  245. typedef typename make_unsigned<S>::type ui_type;
  246. if(b < 0)
  247. {
  248. cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> t(b);
  249. return *a.limbs() == *t.limbs();
  250. }
  251. else
  252. {
  253. return *a.limbs() == static_cast<ui_type>(b);
  254. }
  255. }
  256. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  257. BOOST_MP_FORCEINLINE typename enable_if_c<
  258. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  259. bool
  260. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  261. {
  262. if(a.sign() != b.sign())
  263. return a.sign();
  264. return a.sign() ? *a.limbs() > *b.limbs() : *a.limbs() < *b.limbs();
  265. }
  266. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  267. BOOST_MP_FORCEINLINE typename enable_if_c<
  268. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  269. bool
  270. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  271. {
  272. return *a.limbs() < *b.limbs();
  273. }
  274. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  275. BOOST_MP_FORCEINLINE typename enable_if_c<
  276. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  277. bool
  278. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  279. {
  280. if(a.sign())
  281. return true;
  282. return *a.limbs() < b;
  283. }
  284. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  285. BOOST_MP_FORCEINLINE typename enable_if_c<
  286. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  287. bool
  288. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  289. {
  290. if(a.sign() != (b < 0))
  291. return a.sign();
  292. return a.sign() ? (*a.limbs() > boost::multiprecision::detail::unsigned_abs(b)) : (*a.limbs() < boost::multiprecision::detail::unsigned_abs(b));
  293. }
  294. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  295. BOOST_MP_FORCEINLINE typename enable_if_c<
  296. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  297. bool
  298. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  299. {
  300. return *a.limbs() < b;
  301. }
  302. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  303. BOOST_MP_FORCEINLINE typename enable_if_c<
  304. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  305. bool
  306. >::type eval_lt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  307. {
  308. typedef typename make_unsigned<S>::type ui_type;
  309. if(b < 0)
  310. {
  311. cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> t(b);
  312. return *a.limbs() < *t.limbs();
  313. }
  314. else
  315. {
  316. return *a.limbs() < static_cast<ui_type>(b);
  317. }
  318. }
  319. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  320. BOOST_MP_FORCEINLINE typename enable_if_c<
  321. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  322. bool
  323. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  324. {
  325. if(a.sign() != b.sign())
  326. return !a.sign();
  327. return a.sign() ? *a.limbs() < *b.limbs() : *a.limbs() > *b.limbs();
  328. }
  329. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked>
  330. BOOST_MP_FORCEINLINE typename enable_if_c<
  331. is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  332. bool
  333. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& b) BOOST_NOEXCEPT
  334. {
  335. return *a.limbs() > *b.limbs();
  336. }
  337. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  338. BOOST_MP_FORCEINLINE typename enable_if_c<
  339. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  340. bool
  341. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  342. {
  343. if(a.sign())
  344. return false;
  345. return *a.limbs() > b;
  346. }
  347. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  348. BOOST_MP_FORCEINLINE typename enable_if_c<
  349. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void> >::value,
  350. bool
  351. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, signed_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  352. {
  353. if(a.sign() != (b < 0))
  354. return !a.sign();
  355. return a.sign() ? (*a.limbs() < boost::multiprecision::detail::unsigned_abs(b)) : (*a.limbs() > boost::multiprecision::detail::unsigned_abs(b));
  356. }
  357. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class U>
  358. BOOST_MP_FORCEINLINE typename enable_if_c<
  359. is_unsigned<U>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  360. bool
  361. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, U b) BOOST_NOEXCEPT
  362. {
  363. return *a.limbs() > b;
  364. }
  365. template <unsigned MinBits, unsigned MaxBits, cpp_int_check_type Checked, class S>
  366. BOOST_MP_FORCEINLINE typename enable_if_c<
  367. is_signed<S>::value && is_trivial_cpp_int<cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> >::value,
  368. bool
  369. >::type eval_gt(const cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void>& a, S b) BOOST_NOEXCEPT
  370. {
  371. typedef typename make_unsigned<S>::type ui_type;
  372. if(b < 0)
  373. {
  374. cpp_int_backend<MinBits, MaxBits, unsigned_magnitude, Checked, void> t(b);
  375. return *a.limbs() > *t.limbs();
  376. }
  377. else
  378. {
  379. return *a.limbs() > static_cast<ui_type>(b);
  380. }
  381. }
  382. #ifdef BOOST_MSVC
  383. #pragma warning(pop)
  384. #endif
  385. }}} // namespaces
  386. #endif