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

数学计算

开发平台:

Unix_Linux

  1. /* Test for sqrmod_bnm1 function.
  2.    Contributed to the GNU project by Marco Bodrato.
  3. Copyright 2009 Free Software 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 "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "tests.h"
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. /* Sizes are up to 2^SIZE_LOG limbs */
  21. #ifndef SIZE_LOG
  22. #define SIZE_LOG 12
  23. #endif
  24. #ifndef COUNT
  25. #define COUNT 3000
  26. #endif
  27. #define MAX_N (1L << SIZE_LOG)
  28. #define MIN_N 1
  29. /*
  30.   Reference function for squaring modulo B^rn-1.
  31.   The result is expected to be ZERO if and only if one of the operand
  32.   already is. Otherwise the class [0] Mod(B^rn-1) is represented by
  33.   B^rn-1. This should not be a problem if sqrmod_bnm1 is used to
  34.   combine results and obtain a natural number when one knows in
  35.   advance that the final value is less than (B^rn-1).
  36. */
  37. static void
  38. ref_sqrmod_bnm1 (mp_ptr rp, mp_size_t rn, mp_srcptr ap, mp_size_t an)
  39. {
  40.   mp_limb_t cy;
  41.   ASSERT (0 < an && an <= rn);
  42.   refmpn_mul (rp, ap, an, ap, an);
  43.   an *= 2;
  44.   if (an > rn) {
  45.     cy = mpn_add (rp, rp, rn, rp + rn, an - rn);
  46.     /* If cy == 1, then the value of rp is at most B^rn - 2, so there can
  47.      * be no overflow when adding in the carry. */
  48.     MPN_INCR_U (rp, rn, cy);
  49.   }
  50. }
  51. /*
  52.   Compare the result of the mpn_sqrmod_bnm1 function in the library
  53.   with the reference function above.
  54. */
  55. int
  56. main (int argc, char **argv)
  57. {
  58.   mp_ptr ap, refp, pp, scratch;
  59.   int count = COUNT;
  60.   int test;
  61.   gmp_randstate_ptr rands;
  62.   TMP_DECL;
  63.   TMP_MARK;
  64.   if (argc > 1)
  65.     {
  66.       char *end;
  67.       count = strtol (argv[1], &end, 0);
  68.       if (*end || count <= 0)
  69. {
  70.   fprintf (stderr, "Invalid test count: %s.n", argv[1]);
  71.   return 1;
  72. }
  73.     }
  74.   tests_start ();
  75.   rands = RANDS;
  76.   ASSERT_ALWAYS (mpn_sqrmod_bnm1_next_size (MAX_N) == MAX_N);
  77.   ap = TMP_ALLOC_LIMBS (MAX_N);
  78.   refp = TMP_ALLOC_LIMBS (MAX_N * 4);
  79.   pp = 1+TMP_ALLOC_LIMBS (MAX_N + 2);
  80.   scratch
  81.     = 1+TMP_ALLOC_LIMBS (mpn_sqrmod_bnm1_itch (MAX_N, MAX_N) + 2);
  82.   for (test = 0; test < count; test++)
  83.     {
  84.       unsigned size_min;
  85.       unsigned size_range;
  86.       mp_size_t an,rn,n;
  87.       mp_size_t itch;
  88.       mp_limb_t p_before, p_after, s_before, s_after;
  89.       for (size_min = 1; (1L << size_min) < MIN_N; size_min++)
  90. ;
  91.       /* We generate an in the MIN_N <= n <= (1 << size_range). */
  92.       size_range = size_min
  93. + gmp_urandomm_ui (rands, SIZE_LOG + 1 - size_min);
  94.       n = MIN_N
  95. + gmp_urandomm_ui (rands, (1L << size_range) + 1 - MIN_N);
  96.       n = mpn_sqrmod_bnm1_next_size (n);
  97.       if (n == 1)
  98. an = 1;
  99.       else
  100. an = ((n+1) >> 1) + gmp_urandomm_ui (rands, (n+1) >> 1);
  101.       mpn_random2 (ap, an);
  102.       /* Sometime trigger the borderline conditions
  103.  A = -1,0,+1 Mod(B^{n/2}+1).
  104.  This only makes sense if there is at least a split, i.e. n is even. */
  105.       if ((test & 0x1f) == 1 && (n & 1) == 0) {
  106. mp_size_t x;
  107. MPN_COPY (ap, ap + (n >> 1), an - (n >> 1));
  108. MPN_ZERO (ap + an - (n >> 1) , n - an);
  109. x = (n == an) ? 0 : gmp_urandomm_ui (rands, n - an);
  110. ap[x] += gmp_urandomm_ui (rands, 3) - 1;
  111.       }
  112.       rn = MIN(n, 2*an);
  113.       mpn_random2 (pp-1, rn + 2);
  114.       p_before = pp[-1];
  115.       p_after = pp[rn];
  116.       itch = mpn_sqrmod_bnm1_itch (n, an);
  117.       ASSERT_ALWAYS (itch <= mpn_sqrmod_bnm1_itch (MAX_N, MAX_N));
  118.       mpn_random2 (scratch-1, itch+2);
  119.       s_before = scratch[-1];
  120.       s_after = scratch[itch];
  121.       mpn_sqrmod_bnm1 (  pp, n, ap, an, scratch);
  122.       ref_sqrmod_bnm1 (refp, n, ap, an);
  123.       if (pp[-1] != p_before || pp[rn] != p_after
  124.   || scratch[-1] != s_before || scratch[itch] != s_after
  125.   || mpn_cmp (refp, pp, rn) != 0)
  126. {
  127.   printf ("ERROR in test %d, an = %d, n = %dn",
  128.   test, (int) an, (int) n);
  129.   if (pp[-1] != p_before)
  130.     {
  131.       printf ("before pp:"); mpn_dump (pp -1, 1);
  132.       printf ("keep:   "); mpn_dump (&p_before, 1);
  133.     }
  134.   if (pp[rn] != p_after)
  135.     {
  136.       printf ("after pp:"); mpn_dump (pp + rn, 1);
  137.       printf ("keep:   "); mpn_dump (&p_after, 1);
  138.     }
  139.   if (scratch[-1] != s_before)
  140.     {
  141.       printf ("before scratch:"); mpn_dump (scratch-1, 1);
  142.       printf ("keep:   "); mpn_dump (&s_before, 1);
  143.     }
  144.   if (scratch[itch] != s_after)
  145.     {
  146.       printf ("after scratch:"); mpn_dump (scratch + itch, 1);
  147.       printf ("keep:   "); mpn_dump (&s_after, 1);
  148.     }
  149.   mpn_dump (ap, an);
  150.   mpn_dump (pp, rn);
  151.   mpn_dump (refp, rn);
  152.   abort();
  153. }
  154.     }
  155.   TMP_FREE;
  156.   tests_end ();
  157.   return 0;
  158. }