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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpf_eq.
  2. Copyright 2009 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. #define SZ (2 * sizeof(mp_limb_t))
  20. void insert_random_low_zero_limbs (mpf_t, gmp_randstate_ptr);
  21. void dump_abort (mpf_t, mpf_t, int, int, int, int, int, long);
  22. void hexdump (mpf_t);
  23. int
  24. main (int argc, char **argv)
  25. {
  26.   unsigned long test, reps = 10000;
  27.   mpf_t a, b, x;
  28.   gmp_randstate_ptr rands;
  29.   mpz_t ds;
  30.   int hibits, lshift1, lshift2;
  31.   int xtra;
  32. #define HIBITS 10
  33. #define LSHIFT1 10
  34. #define LSHIFT2 10
  35.   if (argc > 1)
  36.     reps = strtol (argv[1], 0, 0);
  37.   tests_start ();
  38.   rands = RANDS;
  39.   mpf_set_default_prec ((1 << HIBITS) + (1 << LSHIFT1) + (1 << LSHIFT2));
  40.   mpz_init (ds);
  41.   mpf_inits (a, b, x, NULL);
  42.   for (test = 0; test < reps; test++)
  43.     {
  44.       mpz_urandomb (ds, rands, HIBITS);
  45.       hibits = mpz_get_ui (ds) + 1;
  46.       mpz_urandomb (ds, rands, hibits);
  47.       mpz_setbit (ds, hibits  - 1); /* make sure msb is set */
  48.       mpf_set_z (a, ds);
  49.       mpf_set_z (b, ds);
  50.       mpz_urandomb (ds, rands, LSHIFT1);
  51.       lshift1 = mpz_get_ui (ds);
  52.       mpf_mul_2exp (a, a, lshift1 + 1);
  53.       mpf_mul_2exp (b, b, lshift1 + 1);
  54.       mpf_add_ui (a, a, 1); /* make a one-bit difference */
  55.       mpz_urandomb (ds, rands, LSHIFT2);
  56.       lshift2 = mpz_get_ui (ds);
  57.       mpf_mul_2exp (a, a, lshift2);
  58.       mpf_mul_2exp (b, b, lshift2);
  59.       mpz_urandomb (ds, rands, lshift2);
  60.       mpf_set_z (x, ds);
  61.       mpf_add (a, a, x);
  62.       mpf_add (b, b, x);
  63.       insert_random_low_zero_limbs (a, rands);
  64.       insert_random_low_zero_limbs (b, rands);
  65.       if (mpf_eq (a, b, lshift1 + hibits) == 0)
  66. {
  67.   dump_abort (a, b, lshift1 + hibits, lshift1, lshift2, hibits, 1, test);
  68. }
  69.       for (xtra = 1; xtra < 100; xtra++)
  70. if (mpf_eq (a, b, lshift1 + hibits + xtra) != 0)
  71.   {
  72.     dump_abort (a, b, lshift1 + hibits + xtra, lshift1, lshift2, hibits, 0, test);
  73.   }
  74.     }
  75.   mpf_clears (a, b, x, NULL);
  76.   mpz_clear (ds);
  77.   tests_end ();
  78.   exit (0);
  79. }
  80. void
  81. insert_random_low_zero_limbs (mpf_t x, gmp_randstate_ptr rands)
  82. {
  83.   mp_size_t max = PREC(x) - SIZ(x);
  84.   mp_size_t s;
  85.   mpz_t ds; mpz_init (ds);
  86.   mpz_urandomb (ds, rands, 32);
  87.   s = mpz_get_ui (ds) % (max + 1);
  88.   MPN_COPY_DECR (PTR(x) + s, PTR(x), SIZ(x));
  89.   MPN_ZERO (PTR(x), s);
  90.   SIZ(x) += s;
  91.   mpz_clear (ds);
  92. }
  93. void
  94. dump_abort (mpf_t a, mpf_t b, int cmp_prec, int lshift1, int lshift2, int hibits, int want, long test)
  95. {
  96.   printf ("ERROR in test %ldn", test);
  97.   printf ("want %d got %d from mpf_eqn", want, 1-want);
  98.   printf ("cmp_prec = %dn", cmp_prec);
  99.   printf ("lshift1 = %dn", lshift1);
  100.   printf ("lshift2 = %dn", lshift2);
  101.   printf ("hibits = %dn", hibits);
  102.   hexdump (a); puts ("");
  103.   hexdump (b); puts ("");
  104.   abort ();
  105. }
  106. void
  107. hexdump (mpf_t x)
  108. {
  109.   mp_size_t i;
  110.   for (i = ABSIZ(x) - 1; i >= 0; i--)
  111.     {
  112.       gmp_printf ("%0*MX", SZ, PTR(x)[i]);
  113.       if (i != 0)
  114. printf (" ");
  115.     }
  116. }