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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_divexact_ui.
  2. Copyright 1996, 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_random (int argc, char *argv[])
  21. {
  22.   gmp_randstate_ptr rands = RANDS;
  23.   int    reps = 500000;
  24.   mpz_t  a, q, got;
  25.   int    i, qneg;
  26.   unsigned long  d;
  27.   if (argc == 2)
  28.     reps = atoi (argv[1]);
  29.   mpz_init (a);
  30.   mpz_init (q);
  31.   mpz_init (got);
  32.   for (i = 0; i < reps; i++)
  33.     {
  34.       do
  35. d = (unsigned long) urandom();
  36.       while (d == 0);
  37.       mpz_erandomb (q, rands, 512);
  38.       mpz_mul_ui (a, q, d);
  39.       for (qneg = 0; qneg <= 1; qneg++)
  40.         {
  41.           mpz_divexact_ui (got, a, d);
  42.           MPZ_CHECK_FORMAT (got);
  43.           if (mpz_cmp (got, q) != 0)
  44.             {
  45.               printf    ("mpz_divexact_ui wrongn");
  46.               mpz_trace ("    a", a);
  47.               printf    ("    d=%lun", d);
  48.               mpz_trace ("    q", q);
  49.               mpz_trace ("  got", got);
  50.               abort ();
  51.             }
  52.           mpz_neg (q, q);
  53.           mpz_neg (a, a);
  54.         }
  55.     }
  56.   mpz_clear (a);
  57.   mpz_clear (q);
  58.   mpz_clear (got);
  59. }
  60. int
  61. main (int argc, char **argv)
  62. {
  63.   tests_start ();
  64.   check_random (argc, argv);
  65.   tests_end ();
  66.   exit (0);
  67. }