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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_set_f.
  2. Copyright 2001 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_one (mpz_srcptr z)
  21. {
  22.   static const int shift[] = {
  23.     0, 1, GMP_LIMB_BITS, 2*GMP_LIMB_BITS, 5*GMP_LIMB_BITS
  24.   };
  25.   int    sh, shneg, neg;
  26.   mpf_t  f;
  27.   mpz_t  got, want;
  28.   mpf_init2 (f, mpz_sizeinbase(z,2));
  29.   mpz_init (got);
  30.   mpz_init (want);
  31.   for (sh = 0; sh < numberof(shift); sh++)
  32.     {
  33.       for (shneg = 0; shneg <= 1; shneg++)
  34. {
  35.   for (neg = 0; neg <= 1; neg++)
  36.     {
  37.       mpf_set_z (f, z);
  38.       mpz_set (want, z);
  39.       if (neg)
  40. {
  41.   mpf_neg (f, f);
  42.   mpz_neg (want, want);
  43. }
  44.       if (shneg)
  45. {
  46.   mpz_tdiv_q_2exp (want, want, shift[sh]);
  47.   mpf_div_2exp (f, f, shift[sh]);
  48. }
  49.       else
  50. {
  51.   mpz_mul_2exp (want, want, shift[sh]);
  52.   mpf_mul_2exp (f, f, shift[sh]);
  53. }
  54.       mpz_set_f (got, f);
  55.       MPZ_CHECK_FORMAT (got);
  56.       if (mpz_cmp (got, want) != 0)
  57. {
  58.   printf ("wrong resultn");
  59.   printf ("  shift  %dn", shneg ? -shift[sh] : shift[sh]);
  60.   printf ("  neg    %dn", neg);
  61.   mpf_trace ("     f", f);
  62.   mpz_trace ("   got", got);
  63.   mpz_trace ("  want", want);
  64.   abort ();
  65. }
  66.     }
  67. }
  68.     }
  69.   mpf_clear (f);
  70.   mpz_clear (got);
  71.   mpz_clear (want);
  72. }
  73. void
  74. check_various (void)
  75. {
  76.   mpz_t  z;
  77.   mpz_init (z);
  78.   mpz_set_ui (z, 0L);
  79.   check_one (z);
  80.   mpz_set_si (z, 123L);
  81.   check_one (z);
  82.   mpz_rrandomb (z, RANDS, 2*GMP_LIMB_BITS);
  83.   check_one (z);
  84.   mpz_rrandomb (z, RANDS, 5*GMP_LIMB_BITS);
  85.   check_one (z);
  86.   mpz_clear (z);
  87. }
  88. int
  89. main (int argc, char *argv[])
  90. {
  91. #if GMP_NAIL_BITS == 0
  92.   tests_start ();
  93.   mp_trace_base = 16;
  94.   check_various ();
  95.   tests_end ();
  96. #endif
  97.   exit (0);
  98. }