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

数学计算

开发平台:

Unix_Linux

  1. /* Test for mpn_invert 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 1000
  26. #endif
  27. #define MAX_N (1L << SIZE_LOG)
  28. #define MIN_N 1
  29. static int
  30. invert_valid (mp_srcptr ip, mp_srcptr dp, mp_size_t n)
  31. {
  32.   mp_ptr tp;
  33.   int cy;
  34.   TMP_DECL;
  35.   TMP_MARK;
  36.   tp = TMP_ALLOC_LIMBS (2*n);
  37.   refmpn_mul (tp, ip, n, dp, n);
  38.   cy  = refmpn_add_n (tp + n, tp + n, dp, n); /* This must not give a carry. */
  39.   cy -= refmpn_add (tp, tp, 2*n, dp, n); /* This must give a carry. */
  40.   TMP_FREE;
  41.   return (cy == -1);
  42. }
  43. /*
  44.   Chech the result of the mpn_invert function in the library.
  45. */
  46. int
  47. main (int argc, char **argv)
  48. {
  49.   mp_ptr ip, dp, scratch;
  50.   int count = COUNT;
  51.   int test;
  52.   gmp_randstate_ptr rands;
  53.   TMP_DECL;
  54.   TMP_MARK;
  55.   if (argc > 1)
  56.     {
  57.       char *end;
  58.       count = strtol (argv[1], &end, 0);
  59.       if (*end || count <= 0)
  60. {
  61.   fprintf (stderr, "Invalid test count: %s.n", argv[1]);
  62.   return 1;
  63. }
  64.     }
  65.   tests_start ();
  66.   rands = RANDS;
  67.   dp = TMP_ALLOC_LIMBS (MAX_N);
  68.   ip = 1+TMP_ALLOC_LIMBS (MAX_N + 2);
  69.   scratch
  70.     = 1+TMP_ALLOC_LIMBS (mpn_invert_itch (MAX_N) + 2);
  71.   for (test = 0; test < count; test++)
  72.     {
  73.       unsigned size_min;
  74.       unsigned size_range;
  75.       mp_size_t n;
  76.       mp_size_t itch;
  77.       mp_limb_t i_before, i_after, s_before, s_after;
  78.       for (size_min = 1; (1L << size_min) < MIN_N; size_min++)
  79. ;
  80.       /* We generate an in the MIN_N <= n <= (1 << size_range). */
  81.       size_range = size_min
  82. + gmp_urandomm_ui (rands, SIZE_LOG + 1 - size_min);
  83.       n = MIN_N
  84. + gmp_urandomm_ui (rands, (1L << size_range) + 1 - MIN_N);
  85.       mpn_random2 (dp, n);
  86.       mpn_random2 (ip-1, n + 2);
  87.       i_before = ip[-1];
  88.       i_after = ip[n];
  89.       itch = mpn_invert_itch (n);
  90.       ASSERT_ALWAYS (itch <= mpn_invert_itch (MAX_N));
  91.       mpn_random2 (scratch-1, itch+2);
  92.       s_before = scratch[-1];
  93.       s_after = scratch[itch];
  94.       dp[n-1] |= GMP_NUMB_HIGHBIT;
  95.       mpn_invert (ip, dp, n, scratch);
  96.       if (ip[-1] != i_before || ip[n] != i_after
  97.   || scratch[-1] != s_before || scratch[itch] != s_after
  98.   || ! invert_valid(ip, dp, n))
  99. {
  100.   printf ("ERROR in test %d, n = %dn",
  101.   test, (int) n);
  102.   if (ip[-1] != i_before)
  103.     {
  104.       printf ("before ip:"); mpn_dump (ip -1, 1);
  105.       printf ("keep:   "); mpn_dump (&i_before, 1);
  106.     }
  107.   if (ip[n] != i_after)
  108.     {
  109.       printf ("after ip:"); mpn_dump (ip + n, 1);
  110.       printf ("keep:   "); mpn_dump (&i_after, 1);
  111.     }
  112.   if (scratch[-1] != s_before)
  113.     {
  114.       printf ("before scratch:"); mpn_dump (scratch-1, 1);
  115.       printf ("keep:   "); mpn_dump (&s_before, 1);
  116.     }
  117.   if (scratch[itch] != s_after)
  118.     {
  119.       printf ("after scratch:"); mpn_dump (scratch + itch, 1);
  120.       printf ("keep:   "); mpn_dump (&s_after, 1);
  121.     }
  122.   mpn_dump (dp, n);
  123.   mpn_dump (ip, n);
  124.   abort();
  125. }
  126.     }
  127.   TMP_FREE;
  128.   tests_end ();
  129.   return 0;
  130. }