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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpf_sqrt_ui.
  2. Copyright 2004 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_rand (void)
  21. {
  22.   unsigned long      max_prec = 15;
  23.   unsigned long      min_prec = __GMPF_BITS_TO_PREC (1);
  24.   gmp_randstate_ptr  rands = RANDS;
  25.   unsigned long      x, prec;
  26.   mpf_t              r, s;
  27.   int                i;
  28.   mpf_init (r);
  29.   mpf_init (s);
  30.   refmpf_set_prec_limbs (s, 2*max_prec+10);
  31.   for (i = 0; i < 50; i++)
  32.     {
  33.       /* input, a random non-zero ulong, exponentially distributed */
  34.       do {
  35.         x = gmp_urandomb_ui (rands,
  36.                              gmp_urandomm_ui (rands, BITS_PER_ULONG) + 1);
  37.       } while (x == 0);
  38.       /* result precision */
  39.       prec = gmp_urandomm_ui (rands, max_prec-min_prec) + min_prec;
  40.       refmpf_set_prec_limbs (r, prec);
  41.       mpf_sqrt_ui (r, x);
  42.       MPF_CHECK_FORMAT (r);
  43.       /* Expect to prec limbs of result.
  44.          In the current implementation there's no stripping of low zero
  45.          limbs in mpf_sqrt_ui, not even on perfect squares, so size should
  46.          be exactly prec.  */
  47.       if (SIZ(r) != prec)
  48.         {
  49.           printf ("mpf_sqrt_ui result not enough result limbsn");
  50.           printf    ("  x=%lun", x);
  51.           printf    ("  want prec=%lun", prec);
  52.           mpf_trace ("  r", r);
  53.           printf    ("  r size %ldn", (long) SIZ(r));
  54.           printf    ("  r prec %ldn", (long) PREC(r));
  55.           abort ();
  56.         }
  57.       /* Must have r^2 <= x, since r has been truncated. */
  58.       mpf_mul (s, r, r);
  59.       if (! (mpf_cmp_ui (s, x) <= 0))
  60.         {
  61.           printf    ("mpf_sqrt_ui result too bign");
  62.           printf    ("  x=%lun", x);
  63.           printf    ("  want prec=%lun", prec);
  64.           mpf_trace ("  r", r);
  65.           mpf_trace ("  s", s);
  66.           abort ();
  67.         }
  68.       /* Must have (r+ulp)^2 > x.
  69.          No overflow from refmpf_add_ulp since r is only prec limbs. */
  70.       refmpf_add_ulp (r);
  71.       mpf_mul (s, r, r);
  72.       if (! (mpf_cmp_ui (s, x) > 0))
  73.         {
  74.           printf    ("mpf_sqrt_ui result too smalln");
  75.           printf    ("  x=%lun", x);
  76.           printf    ("  want prec=%lun", prec);
  77.           mpf_trace ("  r+ulp", r);
  78.           mpf_trace ("  s", s);
  79.           abort ();
  80.         }
  81.     }
  82.   mpf_clear (r);
  83.   mpf_clear (s);
  84. }
  85. int
  86. main (int argc, char **argv)
  87. {
  88.   tests_start ();
  89.   mp_trace_base = -16;
  90.   check_rand ();
  91.   tests_end ();
  92.   exit (0);
  93. }