pprime_p.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:4k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpz_probab_prime_p --
  2.    An implementation of the probabilistic primality test found in Knuth's
  3.    Seminumerical Algorithms book.  If the function mpz_probab_prime_p()
  4.    returns 0 then n is not prime.  If it returns 1, then n is 'probably'
  5.    prime.  If it returns 2, n is surely prime.  The probability of a false
  6.    positive is (1/4)**reps, where reps is the number of internal passes of the
  7.    probabilistic algorithm.  Knuth indicates that 25 passes are reasonable.
  8. Copyright 1991, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005 Free
  9. Software Foundation, Inc.  Miller-Rabin code contributed by John Amanatides.
  10. This file is part of the GNU MP Library.
  11. The GNU MP Library is free software; you can redistribute it and/or modify
  12. it under the terms of the GNU Lesser General Public License as published by
  13. the Free Software Foundation; either version 3 of the License, or (at your
  14. option) any later version.
  15. The GNU MP Library is distributed in the hope that it will be useful, but
  16. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  17. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  18. License for more details.
  19. You should have received a copy of the GNU Lesser General Public License
  20. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23. #include "longlong.h"
  24. static int isprime __GMP_PROTO ((unsigned long int));
  25. /* MPN_MOD_OR_MODEXACT_1_ODD can be used instead of mpn_mod_1 for the trial
  26.    division.  It gives a result which is not the actual remainder r but a
  27.    value congruent to r*2^n mod d.  Since all the primes being tested are
  28.    odd, r*2^n mod p will be 0 if and only if r mod p is 0.  */
  29. int
  30. mpz_probab_prime_p (mpz_srcptr n, int reps)
  31. {
  32.   mp_limb_t r;
  33.   mpz_t n2;
  34.   /* Handle small and negative n.  */
  35.   if (mpz_cmp_ui (n, 1000000L) <= 0)
  36.     {
  37.       int is_prime;
  38.       if (mpz_cmpabs_ui (n, 1000000L) <= 0)
  39. {
  40.   is_prime = isprime (mpz_get_ui (n));
  41.   return is_prime ? 2 : 0;
  42. }
  43.       /* Negative number.  Negate and fall out.  */
  44.       PTR(n2) = PTR(n);
  45.       SIZ(n2) = -SIZ(n);
  46.       n = n2;
  47.     }
  48.   /* If n is now even, it is not a prime.  */
  49.   if ((mpz_get_ui (n) & 1) == 0)
  50.     return 0;
  51. #if defined (PP)
  52.   /* Check if n has small factors.  */
  53. #if defined (PP_INVERTED)
  54.   r = MPN_MOD_OR_PREINV_MOD_1 (PTR(n), (mp_size_t) SIZ(n), (mp_limb_t) PP,
  55.                                (mp_limb_t) PP_INVERTED);
  56. #else
  57.   r = mpn_mod_1 (PTR(n), (mp_size_t) SIZ(n), (mp_limb_t) PP);
  58. #endif
  59.   if (r % 3 == 0
  60. #if GMP_LIMB_BITS >= 4
  61.       || r % 5 == 0
  62. #endif
  63. #if GMP_LIMB_BITS >= 8
  64.       || r % 7 == 0
  65. #endif
  66. #if GMP_LIMB_BITS >= 16
  67.       || r % 11 == 0 || r % 13 == 0
  68. #endif
  69. #if GMP_LIMB_BITS >= 32
  70.       || r % 17 == 0 || r % 19 == 0 || r % 23 == 0 || r % 29 == 0
  71. #endif
  72. #if GMP_LIMB_BITS >= 64
  73.       || r % 31 == 0 || r % 37 == 0 || r % 41 == 0 || r % 43 == 0
  74.       || r % 47 == 0 || r % 53 == 0
  75. #endif
  76.       )
  77.     {
  78.       return 0;
  79.     }
  80. #endif /* PP */
  81.   /* Do more dividing.  We collect small primes, using umul_ppmm, until we
  82.      overflow a single limb.  We divide our number by the small primes product,
  83.      and look for factors in the remainder.  */
  84.   {
  85.     unsigned long int ln2;
  86.     unsigned long int q;
  87.     mp_limb_t p1, p0, p;
  88.     unsigned int primes[15];
  89.     int nprimes;
  90.     nprimes = 0;
  91.     p = 1;
  92.     ln2 = mpz_sizeinbase (n, 2); /* FIXME: tune this limit */
  93.     for (q = PP_FIRST_OMITTED; q < ln2; q += 2)
  94.       {
  95. if (isprime (q))
  96.   {
  97.     umul_ppmm (p1, p0, p, q);
  98.     if (p1 != 0)
  99.       {
  100. r = MPN_MOD_OR_MODEXACT_1_ODD (PTR(n), (mp_size_t) SIZ(n), p);
  101. while (--nprimes >= 0)
  102.   if (r % primes[nprimes] == 0)
  103.     {
  104.       ASSERT_ALWAYS (mpn_mod_1 (PTR(n), (mp_size_t) SIZ(n), (mp_limb_t) primes[nprimes]) == 0);
  105.       return 0;
  106.     }
  107. p = q;
  108. nprimes = 0;
  109.       }
  110.     else
  111.       {
  112. p = p0;
  113.       }
  114.     primes[nprimes++] = q;
  115.   }
  116.       }
  117.   }
  118.   /* Perform a number of Miller-Rabin tests.  */
  119.   return mpz_millerrabin (n, reps);
  120. }
  121. static int
  122. isprime (unsigned long int t)
  123. {
  124.   unsigned long int q, r, d;
  125.   if (t < 3 || (t & 1) == 0)
  126.     return t == 2;
  127.   for (d = 3, r = 1; r != 0; d += 2)
  128.     {
  129.       q = t / d;
  130.       r = t - q * d;
  131.       if (q < d)
  132. return 1;
  133.     }
  134.   return 0;
  135. }