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

数学计算

开发平台:

Unix_Linux

  1. /* Exercise mpz_probab_prime_p.
  2. Copyright 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "tests.h"
  19. /* Enhancements:
  20.    - Test some big primes don't come back claimed to be composite.
  21.    - Test some big composites don't come back claimed to be certainly prime.
  22.    - Test some big composites with small factors are identified as certainly
  23.      composite.  */
  24. /* return 1 if prime, 0 if composite */
  25. int
  26. isprime (long n)
  27. {
  28.   long  i;
  29.   n = ABS(n);
  30.   if (n < 2)
  31.     return 0;
  32.   if (n == 2)
  33.     return 1;
  34.   if ((n & 1) == 0)
  35.     return 0;
  36.   for (i = 3; i < n; i++)
  37.     if ((n % i) == 0)
  38.       return 0;
  39.   return 1;
  40. }
  41. void
  42. check_one (mpz_srcptr n, int want)
  43. {
  44.   int  got;
  45.   got = mpz_probab_prime_p (n, 25);
  46.   /* "definitely prime" is fine if we only wanted "probably prime" */
  47.   if (got == 2 && want == 1)
  48.     want = 2;
  49.   if (got != want)
  50.     {
  51.       printf ("mpz_probab_prime_pn");
  52.       mpz_trace ("  n    ", n);
  53.       printf    ("  got =%d", got);
  54.       printf    ("  want=%d", want);
  55.       abort ();
  56.     }
  57. }
  58. void
  59. check_pn (mpz_ptr n, int want)
  60. {
  61.   check_one (n, want);
  62.   mpz_neg (n, n);
  63.   check_one (n, want);
  64. }
  65. /* expect certainty for small n */
  66. void
  67. check_small (void)
  68. {
  69.   mpz_t  n;
  70.   long   i;
  71.   mpz_init (n);
  72.   for (i = 0; i < 300; i++)
  73.     {
  74.       mpz_set_si (n, i);
  75.       check_pn (n, isprime (i));
  76.     }
  77.   mpz_clear (n);
  78. }
  79. int
  80. main (void)
  81. {
  82.   tests_start ();
  83.   check_small ();
  84.   tests_end ();
  85.   exit (0);
  86. }