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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_mul, mpz_divexact.
  2. Copyright 1996, 2001, 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. int
  20. main (int argc, char **argv)
  21. {
  22.   mpz_t op1, op2;
  23.   mpz_t prod, quot;
  24.   mp_size_t size;
  25.   int i;
  26.   int reps = 5000;
  27.   gmp_randstate_ptr rands;
  28.   mpz_t bs;
  29.   unsigned long bsi, size_range;
  30.   tests_start ();
  31.   TESTS_REPS (reps, argv, argc);
  32.   rands = RANDS;
  33.   mp_trace_base = -16;
  34.   mpz_init (bs);
  35.   mpz_init (op1);
  36.   mpz_init (op2);
  37.   mpz_init (prod);
  38.   mpz_init (quot);
  39.   for (i = 0; i < reps; i++)
  40.     {
  41.       mpz_urandomb (bs, rands, 32);
  42.       size_range = mpz_get_ui (bs) % 17 + 2; /* 0..2047 bit operands */
  43.       mpz_urandomb (bs, rands, size_range);
  44.       size = mpz_get_ui (bs);
  45.       mpz_rrandomb (op1, rands, size);
  46.       do
  47. {
  48.   mpz_urandomb (bs, rands, size_range);
  49.   size = mpz_get_ui (bs);
  50.   mpz_rrandomb (op2, rands, size);
  51. }
  52.       while (mpz_sgn (op2) == 0);
  53.       mpz_urandomb (bs, rands, 2);
  54.       bsi = mpz_get_ui (bs);
  55.       if ((bsi & 1) != 0)
  56. mpz_neg (op1, op1);
  57.       if ((bsi & 2) != 0)
  58. mpz_neg (op2, op2);
  59.       mpz_mul (prod, op1, op2);
  60.       mpz_divexact (quot, prod, op2);
  61.       MPZ_CHECK_FORMAT (quot);
  62.       if (mpz_cmp (quot, op1) != 0)
  63.         {
  64.           printf ("Wrong results:n");
  65.           mpz_trace ("  got     ", quot);
  66.           mpz_trace ("  want    ", op1);
  67.           mpz_trace ("  dividend", prod);
  68.           mpz_trace ("  divisor ", op2);
  69.           abort ();
  70.         }
  71.     }
  72.   mpz_clear (bs);
  73.   mpz_clear (op1);
  74.   mpz_clear (op2);
  75.   mpz_clear (prod);
  76.   mpz_clear (quot);
  77.   tests_end ();
  78.   exit (0);
  79. }