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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_add, mpz_add_ui, mpz_cmp, mpz_cmp, mpz_mul, mpz_sqrtrem.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002 Free Software Foundation,
  3. 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. void dump_abort __GMP_PROTO ((mpz_t, mpz_t, mpz_t));
  21. void debug_mp __GMP_PROTO ((mpz_t, int));
  22. int
  23. main (int argc, char **argv)
  24. {
  25.   mpz_t x2;
  26.   mpz_t x, rem;
  27.   mpz_t temp, temp2;
  28.   mp_size_t x2_size;
  29.   int i;
  30.   int reps = 1000;
  31.   gmp_randstate_ptr rands;
  32.   mpz_t bs;
  33.   unsigned long size_range;
  34.   tests_start ();
  35.   TESTS_REPS (reps, argv, argc);
  36.   rands = RANDS;
  37.   mpz_init (bs);
  38.   mpz_init (x2);
  39.   mpz_init (x);
  40.   mpz_init (rem);
  41.   mpz_init (temp);
  42.   mpz_init (temp2);
  43.   for (i = 0; i < reps; i++)
  44.     {
  45.       mpz_urandomb (bs, rands, 32);
  46.       size_range = mpz_get_ui (bs) % 17 + 2; /* 0..262144 bit operands */
  47.       mpz_urandomb (bs, rands, size_range);
  48.       x2_size = mpz_get_ui (bs);
  49.       mpz_rrandomb (x2, rands, x2_size);
  50.       /* printf ("%ldn", SIZ (x2)); */
  51.       mpz_sqrtrem (x, rem, x2);
  52.       MPZ_CHECK_FORMAT (x);
  53.       MPZ_CHECK_FORMAT (rem);
  54.       mpz_mul (temp, x, x);
  55.       /* Is square of result > argument?  */
  56.       if (mpz_cmp (temp, x2) > 0)
  57. dump_abort (x2, x, rem);
  58.       mpz_add_ui (temp2, x, 1);
  59.       mpz_mul (temp2, temp2, temp2);
  60.       /* Is square of (result + 1) <= argument?  */
  61.       if (mpz_cmp (temp2, x2) <= 0)
  62. dump_abort (x2, x, rem);
  63.       mpz_add (temp2, temp, rem);
  64.       /* Is the remainder wrong?  */
  65.       if (mpz_cmp (x2, temp2) != 0)
  66. dump_abort (x2, x, rem);
  67.     }
  68.   mpz_clear (bs);
  69.   mpz_clear (x2);
  70.   mpz_clear (x);
  71.   mpz_clear (rem);
  72.   mpz_clear (temp);
  73.   mpz_clear (temp2);
  74.   tests_end ();
  75.   exit (0);
  76. }
  77. void
  78. dump_abort (mpz_t x2, mpz_t x, mpz_t rem)
  79. {
  80.   fprintf (stderr, "ERRORn");
  81.   fprintf (stderr, "x2        = "); debug_mp (x2, -16);
  82.   fprintf (stderr, "x         = "); debug_mp (x, -16);
  83.   fprintf (stderr, "remainder = "); debug_mp (rem, -16);
  84.   abort();
  85. }
  86. void
  87. debug_mp (mpz_t x, int base)
  88. {
  89.   mpz_out_str (stderr, base, x); fputc ('n', stderr);
  90. }