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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_powm, mpz_mul, mpz_mod, mpz_mod_ui, mpz_div_ui.
  2. Copyright 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2009 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 debug_mp __GMP_PROTO ((mpz_t, int));
  21. int
  22. main (int argc, char **argv)
  23. {
  24.   mpz_t base, exp, mod;
  25.   mpz_t r1, r2, t1, exp2, base2;
  26.   mp_size_t base_size, exp_size, mod_size;
  27.   int i;
  28.   int reps = 1000;
  29.   gmp_randstate_ptr rands;
  30.   mpz_t bs;
  31.   unsigned long bsi, size_range;
  32.   tests_start ();
  33.   TESTS_REPS (reps, argv, argc);
  34.   rands = RANDS;
  35.   mpz_init (bs);
  36.   mpz_init (base);
  37.   mpz_init (exp);
  38.   mpz_init (mod);
  39.   mpz_init (r1);
  40.   mpz_init (r2);
  41.   mpz_init (t1);
  42.   mpz_init (exp2);
  43.   mpz_init (base2);
  44.   for (i = 0; i < reps; i++)
  45.     {
  46.       mpz_urandomb (bs, rands, 32);
  47.       size_range = mpz_get_ui (bs) % 13 + 2;
  48.       do  /* Loop until mathematically well-defined.  */
  49. {
  50.   mpz_urandomb (bs, rands, size_range);
  51.   base_size = mpz_get_ui (bs);
  52.   mpz_rrandomb (base, rands, base_size);
  53.   mpz_urandomb (bs, rands, 7L);
  54.   exp_size = mpz_get_ui (bs);
  55.   mpz_rrandomb (exp, rands, exp_size);
  56. }
  57.       while (mpz_cmp_ui (base, 0) == 0 && mpz_cmp_ui (exp, 0) == 0);
  58.       do
  59.         {
  60.   mpz_urandomb (bs, rands, size_range);
  61.   mod_size = mpz_get_ui (bs);
  62.   mpz_rrandomb (mod, rands, mod_size);
  63. }
  64.       while (mpz_cmp_ui (mod, 0) == 0);
  65.       mpz_urandomb (bs, rands, 2);
  66.       bsi = mpz_get_ui (bs);
  67.       if ((bsi & 1) != 0)
  68. mpz_neg (base, base);
  69.       /* printf ("%ld %ld %ldn", SIZ (base), SIZ (exp), SIZ (mod)); */
  70.       mpz_set_ui (r2, 1);
  71.       mpz_mod (base2, base, mod);
  72.       mpz_set (exp2, exp);
  73.       mpz_mod (r2, r2, mod);
  74.       for (;;)
  75. {
  76.   if (mpz_tstbit (exp2, 0))
  77.     {
  78.       mpz_mul (r2, r2, base2);
  79.       mpz_mod (r2, r2, mod);
  80.     }
  81.   if  (mpz_cmp_ui (exp2, 1) <= 0)
  82.     break;
  83.   mpz_mul (base2, base2, base2);
  84.   mpz_mod (base2, base2, mod);
  85.   mpz_tdiv_q_2exp (exp2, exp2, 1);
  86. }
  87.       mpz_powm (r1, base, exp, mod);
  88.       MPZ_CHECK_FORMAT (r1);
  89.       if (mpz_cmp (r1, r2) != 0)
  90. {
  91.   fprintf (stderr, "nIncorrect results in test %d for operands:n", i);
  92.   debug_mp (base, -16);
  93.   debug_mp (exp, -16);
  94.   debug_mp (mod, -16);
  95.   fprintf (stderr, "mpz_powm result:n");
  96.   debug_mp (r1, -16);
  97.   fprintf (stderr, "reference result:n");
  98.   debug_mp (r2, -16);
  99.   abort ();
  100. }
  101.       if (mpz_tdiv_ui (mod, 2) == 0)
  102. continue;
  103.       mpz_powm_sec (r1, base, exp, mod);
  104.       MPZ_CHECK_FORMAT (r1);
  105.       if (mpz_cmp (r1, r2) != 0)
  106. {
  107.   fprintf (stderr, "nIncorrect results in test %d for operands:n", i);
  108.   debug_mp (base, -16);
  109.   debug_mp (exp, -16);
  110.   debug_mp (mod, -16);
  111.   fprintf (stderr, "mpz_powm_sec result:n");
  112.   debug_mp (r1, -16);
  113.   fprintf (stderr, "reference result:n");
  114.   debug_mp (r2, -16);
  115.   abort ();
  116. }
  117.     }
  118.   mpz_clear (bs);
  119.   mpz_clear (base);
  120.   mpz_clear (exp);
  121.   mpz_clear (mod);
  122.   mpz_clear (r1);
  123.   mpz_clear (r2);
  124.   mpz_clear (t1);
  125.   mpz_clear (exp2);
  126.   mpz_clear (base2);
  127.   tests_end ();
  128.   exit (0);
  129. }
  130. void
  131. debug_mp (mpz_t x, int base)
  132. {
  133.   mpz_out_str (stderr, base, x); fputc ('n', stderr);
  134. }