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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpq_get_d and mpq_set_d
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2003 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. #ifndef SIZE
  21. #define SIZE 8
  22. #endif
  23. /* VAX D floats only have an 8 bit signed exponent, so anything 2^128 or
  24.    bigger will overflow, that being 4 limbs. */
  25. #if defined (__vax__) && SIZE > 4
  26. #undef SIZE
  27. #define SIZE 4
  28. #define EPSIZE 3
  29. #else
  30. #define EPSIZE SIZE
  31. #endif
  32. void dump __GMP_PROTO ((mpq_t));
  33. void
  34. check_monotonic (int argc, char **argv)
  35. {
  36.   mpq_t a;
  37.   mp_size_t size;
  38.   int reps = 100;
  39.   int i, j;
  40.   double last_d, new_d;
  41.   mpq_t qlast_d, qnew_d;
  42.   mpq_t eps;
  43.   if (argc == 2)
  44.      reps = atoi (argv[1]);
  45.   /* The idea here is to test the monotonousness of mpq_get_d by adding
  46.      numbers to the numerator and denominator.  */
  47.   mpq_init (a);
  48.   mpq_init (eps);
  49.   mpq_init (qlast_d);
  50.   mpq_init (qnew_d);
  51.   for (i = 0; i < reps; i++)
  52.     {
  53.       size = urandom () % SIZE - SIZE/2;
  54.       mpz_random2 (mpq_numref (a), size);
  55.       do
  56. {
  57.   size = urandom () % SIZE - SIZE/2;
  58.   mpz_random2 (mpq_denref (a), size);
  59. }
  60.       while (mpz_cmp_ui (mpq_denref (a), 0) == 0);
  61.       mpq_canonicalize (a);
  62.       last_d = mpq_get_d (a);
  63.       mpq_set_d (qlast_d, last_d);
  64.       for (j = 0; j < 10; j++)
  65. {
  66.   size = urandom () % EPSIZE + 1;
  67.   mpz_random2 (mpq_numref (eps), size);
  68.   size = urandom () % EPSIZE + 1;
  69.   mpz_random2 (mpq_denref (eps), size);
  70.   mpq_canonicalize (eps);
  71.   mpq_add (a, a, eps);
  72.   mpq_canonicalize (a);
  73.   new_d = mpq_get_d (a);
  74.   if (last_d > new_d)
  75.     {
  76.       printf ("nERROR (test %d/%d): bad mpq_get_d resultsn", i, j);
  77.       printf ("last: %.16gn", last_d);
  78.       printf (" new: %.16gn", new_d); dump (a);
  79.       abort ();
  80.     }
  81.   mpq_set_d (qnew_d, new_d);
  82.   MPQ_CHECK_FORMAT (qnew_d);
  83.   if (mpq_cmp (qlast_d, qnew_d) > 0)
  84.     {
  85.       printf ("ERROR (test %d/%d): bad mpq_set_d resultsn", i, j);
  86.       printf ("last: %.16gn", last_d); dump (qlast_d);
  87.       printf (" new: %.16gn", new_d); dump (qnew_d);
  88.       abort ();
  89.     }
  90.   last_d = new_d;
  91.   mpq_set (qlast_d, qnew_d);
  92. }
  93.     }
  94.   mpq_clear (a);
  95.   mpq_clear (eps);
  96.   mpq_clear (qlast_d);
  97.   mpq_clear (qnew_d);
  98. }
  99. double
  100. my_ldexp (double d, int e)
  101. {
  102.   for (;;)
  103.     {
  104.       if (e > 0)
  105. {
  106.   if (e >= 16)
  107.     {
  108.       d *= 65536.0;
  109.       e -= 16;
  110.     }
  111.   else
  112.     {
  113.       d *= 2.0;
  114.       e -= 1;
  115.     }
  116. }
  117.       else if (e < 0)
  118. {
  119.   if (e <= -16)
  120.     {
  121.       d /= 65536.0;
  122.       e += 16;
  123.     }
  124.   else
  125.     {
  126.       d /= 2.0;
  127.       e += 1;
  128.     }
  129. }
  130.       else
  131. return d;
  132.     }
  133. }
  134. void
  135. check_random (int argc, char **argv)
  136. {
  137.   double d, d2, nd, dd;
  138.   mpq_t q;
  139.   mp_limb_t rp[LIMBS_PER_DOUBLE + 1];
  140.   int test, reps = 100000;
  141.   int i;
  142.   if (argc == 2)
  143.      reps = 100 * atoi (argv[1]);
  144.   mpq_init (q);
  145.   for (test = 0; test < reps; test++)
  146.     {
  147.       mpn_random2 (rp, LIMBS_PER_DOUBLE + 1);
  148.       d = 0.0;
  149.       for (i = LIMBS_PER_DOUBLE - 1; i >= 0; i--)
  150. d = d * MP_BASE_AS_DOUBLE + rp[i];
  151.       d = my_ldexp (d, (int) (rp[LIMBS_PER_DOUBLE] % 1000) - 500);
  152.       mpq_set_d (q, d);
  153.       nd = mpz_get_d (mpq_numref (q));
  154.       dd = mpz_get_d (mpq_denref (q));
  155.       d2 = nd / dd;
  156.       if (d != d2)
  157. {
  158.   printf ("ERROR (check_random test %d): bad mpq_set_d resultsn", test);
  159.   printf ("%.16gn", d);
  160.   printf ("%.16gn", d2);
  161.   abort ();
  162. }
  163.     }
  164.   mpq_clear (q);
  165. }
  166. void
  167. dump (mpq_t x)
  168. {
  169.   mpz_out_str (stdout, 10, mpq_numref (x));
  170.   printf ("/");
  171.   mpz_out_str (stdout, 10, mpq_denref (x));
  172.   printf ("n");
  173. }
  174. /* Check various values 2^n and 1/2^n. */
  175. void
  176. check_onebit (void)
  177. {
  178.   static const long data[] = {
  179.     -3*GMP_NUMB_BITS-1, -3*GMP_NUMB_BITS, -3*GMP_NUMB_BITS+1,
  180.     -2*GMP_NUMB_BITS-1, -2*GMP_NUMB_BITS, -2*GMP_NUMB_BITS+1,
  181.     -GMP_NUMB_BITS-1, -GMP_NUMB_BITS, -GMP_NUMB_BITS+1,
  182.     -5, -2, -1, 0, 1, 2, 5,
  183.     GMP_NUMB_BITS-1, GMP_NUMB_BITS, GMP_NUMB_BITS+1,
  184.     2*GMP_NUMB_BITS-1, 2*GMP_NUMB_BITS, 2*GMP_NUMB_BITS+1,
  185.     3*GMP_NUMB_BITS-1, 3*GMP_NUMB_BITS, 3*GMP_NUMB_BITS+1,
  186.   };
  187.   int     i, neg;
  188.   long    exp, l;
  189.   mpq_t   q;
  190.   double  got, want;
  191.   mpq_init (q);
  192.   for (i = 0; i < numberof (data); i++)
  193.     {
  194.       exp = data[i];
  195.       mpq_set_ui (q, 1L, 1L);
  196.       if (exp >= 0)
  197. mpq_mul_2exp (q, q, exp);
  198.       else
  199. mpq_div_2exp (q, q, -exp);
  200.       want = 1.0;
  201.       for (l = 0; l < exp; l++)
  202. want *= 2.0;
  203.       for (l = 0; l > exp; l--)
  204. want /= 2.0;
  205.       for (neg = 0; neg <= 1; neg++)
  206. {
  207.   if (neg)
  208.     {
  209.       mpq_neg (q, q);
  210.       want = -want;
  211.     }
  212.   got = mpq_get_d (q);
  213.   if (got != want)
  214.     {
  215.       printf    ("mpq_get_d wrong on %s2**%ldn", neg ? "-" : "", exp);
  216.       mpq_trace ("   q    ", q);
  217.       d_trace   ("   want ", want);
  218.       d_trace   ("   got  ", got);
  219.       abort();
  220.     }
  221. }
  222.     }
  223.   mpq_clear (q);
  224. }
  225. int
  226. main (int argc, char **argv)
  227. {
  228.   tests_start ();
  229.   check_onebit ();
  230.   check_monotonic (argc, argv);
  231.   check_random (argc, argv);
  232.   tests_end ();
  233.   exit (0);
  234. }