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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_get_d.
  2. Copyright 2002 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. void
  20. check_onebit (void)
  21. {
  22.   int     i;
  23.   mpz_t   z;
  24.   double  got, want;
  25.   /* FIXME: It'd be better to base this on the float format. */
  26. #ifdef __vax
  27.   int     limit = 127;  /* vax fp numbers have limited range */
  28. #else
  29.   int     limit = 512;
  30. #endif
  31.   mpz_init (z);
  32.   mpz_set_ui (z, 1L);
  33.   want = 1.0;
  34.   for (i = 0; i < limit; i++)
  35.     {
  36.       got = mpz_get_d (z);
  37.       if (got != want)
  38.         {
  39.           printf    ("mpz_get_d wrong on 2**%dn", i);
  40.           mpz_trace ("   z    ", z);
  41.           printf    ("   want  %.20gn", want);
  42.           printf    ("   got   %.20gn", got);
  43.           abort();
  44.         }
  45.       mpz_mul_2exp (z, z, 1L);
  46.       want *= 2.0;
  47.     }
  48.   mpz_clear (z);
  49. }
  50. int
  51. main (void)
  52. {
  53.   tests_start ();
  54.   check_onebit ();
  55.   tests_end ();
  56.   exit (0);
  57. }