miller_rabin.hpp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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_MP_MR_HPP
  6. #define BOOST_MP_MR_HPP
  7. #include <boost/multiprecision/random.hpp>
  8. #include <boost/multiprecision/integer.hpp>
  9. namespace boost{
  10. namespace multiprecision{
  11. namespace detail{
  12. template <class I>
  13. bool check_small_factors(const I& n)
  14. {
  15. static const boost::uint32_t small_factors1[] = {
  16. 3u, 5u, 7u, 11u, 13u, 17u, 19u, 23u };
  17. static const boost::uint32_t pp1 = 223092870u;
  18. boost::uint32_t m1 = integer_modulus(n, pp1);
  19. for(unsigned i = 0; i < sizeof(small_factors1) / sizeof(small_factors1[0]); ++i)
  20. {
  21. BOOST_ASSERT(pp1 % small_factors1[i] == 0);
  22. if(m1 % small_factors1[i] == 0)
  23. return false;
  24. }
  25. static const boost::uint32_t small_factors2[] = {
  26. 29u, 31u, 37u, 41u, 43u, 47u };
  27. static const boost::uint32_t pp2 = 2756205443u;
  28. m1 = integer_modulus(n, pp2);
  29. for(unsigned i = 0; i < sizeof(small_factors2) / sizeof(small_factors2[0]); ++i)
  30. {
  31. BOOST_ASSERT(pp2 % small_factors2[i] == 0);
  32. if(m1 % small_factors2[i] == 0)
  33. return false;
  34. }
  35. static const boost::uint32_t small_factors3[] = {
  36. 53u, 59u, 61u, 67u, 71u };
  37. static const boost::uint32_t pp3 = 907383479u;
  38. m1 = integer_modulus(n, pp3);
  39. for(unsigned i = 0; i < sizeof(small_factors3) / sizeof(small_factors3[0]); ++i)
  40. {
  41. BOOST_ASSERT(pp3 % small_factors3[i] == 0);
  42. if(m1 % small_factors3[i] == 0)
  43. return false;
  44. }
  45. static const boost::uint32_t small_factors4[] = {
  46. 73u, 79u, 83u, 89u, 97u };
  47. static const boost::uint32_t pp4 = 4132280413u;
  48. m1 = integer_modulus(n, pp4);
  49. for(unsigned i = 0; i < sizeof(small_factors4) / sizeof(small_factors4[0]); ++i)
  50. {
  51. BOOST_ASSERT(pp4 % small_factors4[i] == 0);
  52. if(m1 % small_factors4[i] == 0)
  53. return false;
  54. }
  55. static const boost::uint32_t small_factors5[6][4] = {
  56. { 101u, 103u, 107u, 109u },
  57. { 113u, 127u, 131u, 137u },
  58. { 139u, 149u, 151u, 157u },
  59. { 163u, 167u, 173u, 179u },
  60. { 181u, 191u, 193u, 197u },
  61. { 199u, 211u, 223u, 227u }
  62. };
  63. static const boost::uint32_t pp5[6] =
  64. {
  65. 121330189u,
  66. 113u * 127u * 131u * 137u,
  67. 139u * 149u * 151u * 157u,
  68. 163u * 167u * 173u * 179u,
  69. 181u * 191u * 193u * 197u,
  70. 199u * 211u * 223u * 227u
  71. };
  72. for(unsigned k = 0; k < sizeof(pp5) / sizeof(*pp5); ++k)
  73. {
  74. m1 = integer_modulus(n, pp5[k]);
  75. for(unsigned i = 0; i < 4; ++i)
  76. {
  77. BOOST_ASSERT(pp5[k] % small_factors5[k][i] == 0);
  78. if(m1 % small_factors5[k][i] == 0)
  79. return false;
  80. }
  81. }
  82. return true;
  83. }
  84. inline bool is_small_prime(unsigned n)
  85. {
  86. static const unsigned char p[] =
  87. {
  88. 3u, 5u, 7u, 11u, 13u, 17u, 19u, 23u, 29u, 31u,
  89. 37u, 41u, 43u, 47u, 53u, 59u, 61u, 67u, 71u, 73u,
  90. 79u, 83u, 89u, 97u, 101u, 103u, 107u, 109u, 113u,
  91. 127u, 131u, 137u, 139u, 149u, 151u, 157u, 163u,
  92. 167u, 173u, 179u, 181u, 191u, 193u, 197u, 199u,
  93. 211u, 223u, 227u
  94. };
  95. for(unsigned i = 0; i < sizeof(p) / sizeof(*p); ++i)
  96. {
  97. if(n == p[i])
  98. return true;
  99. }
  100. return false;
  101. }
  102. template <class I>
  103. typename enable_if_c<is_convertible<I, unsigned>::value, unsigned>::type
  104. cast_to_unsigned(const I& val)
  105. {
  106. return static_cast<unsigned>(val);
  107. }
  108. template <class I>
  109. typename disable_if_c<is_convertible<I, unsigned>::value, unsigned>::type
  110. cast_to_unsigned(const I& val)
  111. {
  112. return val.template convert_to<unsigned>();
  113. }
  114. } // namespace detail
  115. template <class I, class Engine>
  116. typename enable_if_c<number_category<I>::value == number_kind_integer, bool>::type
  117. miller_rabin_test(const I& n, unsigned trials, Engine& gen)
  118. {
  119. #ifdef BOOST_MSVC
  120. #pragma warning(push)
  121. #pragma warning(disable:4127)
  122. #endif
  123. typedef I number_type;
  124. if (n == 2)
  125. return true; // Trivial special case.
  126. if(bit_test(n, 0) == 0)
  127. return false; // n is even
  128. if(n <= 227)
  129. return detail::is_small_prime(detail::cast_to_unsigned(n));
  130. if(!detail::check_small_factors(n))
  131. return false;
  132. number_type nm1 = n - 1;
  133. //
  134. // Begin with a single Fermat test - it excludes a lot of candidates:
  135. //
  136. number_type q(228), x, y; // We know n is greater than this, as we've excluded small factors
  137. x = powm(q, nm1, n);
  138. if(x != 1u)
  139. return false;
  140. q = n - 1;
  141. unsigned k = lsb(q);
  142. q >>= k;
  143. // Declare our random number generator:
  144. boost::random::uniform_int_distribution<number_type> dist(2, n - 2);
  145. //
  146. // Execute the trials:
  147. //
  148. for(unsigned i = 0; i < trials; ++i)
  149. {
  150. x = dist(gen);
  151. y = powm(x, q, n);
  152. unsigned j = 0;
  153. while(true)
  154. {
  155. if(y == nm1)
  156. break;
  157. if(y == 1)
  158. {
  159. if(j == 0)
  160. break;
  161. return false; // test failed
  162. }
  163. if(++j == k)
  164. return false; // failed
  165. y = powm(y, 2, n);
  166. }
  167. }
  168. return true; // Yeheh! probably prime.
  169. #ifdef BOOST_MSVC
  170. #pragma warning(pop)
  171. #endif
  172. }
  173. template <class I>
  174. typename enable_if_c<number_category<I>::value == number_kind_integer, bool>::type
  175. miller_rabin_test(const I& x, unsigned trials)
  176. {
  177. static mt19937 gen;
  178. return miller_rabin_test(x, trials, gen);
  179. }
  180. template <class tag, class Arg1, class Arg2, class Arg3, class Arg4, class Engine>
  181. bool miller_rabin_test(const detail::expression<tag, Arg1, Arg2, Arg3, Arg4> & n, unsigned trials, Engine& gen)
  182. {
  183. typedef typename detail::expression<tag, Arg1, Arg2, Arg3, Arg4>::result_type number_type;
  184. return miller_rabin_test(number_type(n), trials, gen);
  185. }
  186. template <class tag, class Arg1, class Arg2, class Arg3, class Arg4>
  187. bool miller_rabin_test(const detail::expression<tag, Arg1, Arg2, Arg3, Arg4> & n, unsigned trials)
  188. {
  189. typedef typename detail::expression<tag, Arg1, Arg2, Arg3, Arg4>::result_type number_type;
  190. return miller_rabin_test(number_type(n), trials);
  191. }
  192. }} // namespaces
  193. #endif