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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_powm_ui, mpz_mul, mpz_mod.
  2. Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002 Free Software
  3. Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "tests.h"
  20. void dump_abort __GMP_PROTO ((mpz_t, mpz_t));
  21. void debug_mp __GMP_PROTO ((mpz_t, int));
  22. int
  23. main (int argc, char **argv)
  24. {
  25.   mpz_t base, exp, mod;
  26.   mpz_t r1, r2, base2;
  27.   mp_size_t base_size, exp_size, mod_size;
  28.   unsigned long int exp2;
  29.   int i;
  30.   int reps = 1000;
  31.   gmp_randstate_ptr rands;
  32.   mpz_t bs;
  33.   unsigned long bsi, size_range;
  34.   tests_start ();
  35.   rands = RANDS;
  36.   mpz_init (bs);
  37.   if (argc == 2)
  38.      reps = atoi (argv[1]);
  39.   mpz_init (base);
  40.   mpz_init (exp);
  41.   mpz_init (mod);
  42.   mpz_init (r1);
  43.   mpz_init (r2);
  44.   mpz_init (base2);
  45.   for (i = 0; i < reps; i++)
  46.     {
  47.       mpz_urandomb (bs, rands, 32);
  48.       size_range = mpz_get_ui (bs) % 13 + 2;
  49.       do  /* Loop until mathematically well-defined.  */
  50. {
  51.   mpz_urandomb (bs, rands, size_range);
  52.   base_size = mpz_get_ui (bs);
  53.   mpz_rrandomb (base, rands, base_size);
  54.   mpz_urandomb (bs, rands, 6L);
  55.   exp_size = mpz_get_ui (bs);
  56.   mpz_rrandomb (exp, rands, exp_size);
  57.   exp2 = mpz_getlimbn (exp, (mp_size_t) 0);
  58. }
  59.       while (mpz_cmp_ui (base, 0) == 0 && exp2 == 0);
  60.       do
  61.         {
  62.   mpz_urandomb (bs, rands, size_range);
  63.   mod_size = mpz_get_ui (bs);
  64.   mpz_rrandomb (mod, rands, mod_size);
  65. }
  66.       while (mpz_cmp_ui (mod, 0) == 0);
  67.       mpz_urandomb (bs, rands, 2);
  68.       bsi = mpz_get_ui (bs);
  69.       if ((bsi & 1) != 0)
  70. mpz_neg (base, base);
  71.       /* printf ("%ld %ldn", SIZ (base), SIZ (mod)); */
  72. #if 0
  73.       putc ('n', stderr);
  74.       debug_mp (base, -16);
  75.       debug_mp (mod, -16);
  76. #endif
  77.       mpz_powm_ui (r1, base, exp2, mod);
  78.       MPZ_CHECK_FORMAT (r1);
  79.       mpz_set_ui (r2, 1);
  80.       mpz_set (base2, base);
  81.       mpz_mod (r2, r2, mod); /* needed when exp==0 and mod==1 */
  82.       while (exp2 != 0)
  83. {
  84.   if (exp2 % 2 != 0)
  85.     {
  86.       mpz_mul (r2, r2, base2);
  87.       mpz_mod (r2, r2, mod);
  88.     }
  89.   mpz_mul (base2, base2, base2);
  90.   mpz_mod (base2, base2, mod);
  91.   exp2 = exp2 / 2;
  92. }
  93. #if 0
  94.       debug_mp (r1, -16);
  95.       debug_mp (r2, -16);
  96. #endif
  97.       if (mpz_cmp (r1, r2) != 0)
  98. {
  99.   fprintf (stderr, "ntest %d: Incorrect results for operands:n", i);
  100.   debug_mp (base, -16);
  101.   debug_mp (exp, -16);
  102.   debug_mp (mod, -16);
  103.   fprintf (stderr, "mpz_powm_ui result:n");
  104.   debug_mp (r1, -16);
  105.   fprintf (stderr, "reference result:n");
  106.   debug_mp (r2, -16);
  107.   abort ();
  108. }
  109.     }
  110.   mpz_clear (bs);
  111.   mpz_clear (base);
  112.   mpz_clear (exp);
  113.   mpz_clear (mod);
  114.   mpz_clear (r1);
  115.   mpz_clear (r2);
  116.   mpz_clear (base2);
  117.   tests_end ();
  118.   exit (0);
  119. }
  120. void
  121. dump_abort (mpz_t dividend, mpz_t divisor)
  122. {
  123.   fprintf (stderr, "ERRORn");
  124.   fprintf (stderr, "dividend = "); debug_mp (dividend, -16);
  125.   fprintf (stderr, "divisor  = "); debug_mp (divisor, -16);
  126.   abort();
  127. }
  128. void
  129. debug_mp (mpz_t x, int base)
  130. {
  131.   mpz_out_str (stderr, base, x); fputc ('n', stderr);
  132. }