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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_add, mpz_sub, mpz_add_ui, mpz_sub_ui, and mpz_ui_sub.
  2. Copyright 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 "longlong.h"
  19. #include "tests.h"
  20. void debug_mp __GMP_PROTO ((mpz_t, int));
  21. void dump_abort __GMP_PROTO ((int, char *, mpz_t, mpz_t));
  22. int
  23. main (int argc, char **argv)
  24. {
  25.   mpz_t op1, op2, r1, r2;
  26.   mp_size_t op1n, op2n;
  27.   unsigned long int op2long;
  28.   int i;
  29.   int reps = 100000;
  30.   gmp_randstate_ptr rands;
  31.   mpz_t bs;
  32.   unsigned long bsi, size_range;
  33.   tests_start ();
  34.   rands = RANDS;
  35.   mpz_init (bs);
  36.   if (argc == 2)
  37.      reps = atoi (argv[1]);
  38.   mpz_init (op1);
  39.   mpz_init (op2);
  40.   mpz_init (r1);
  41.   mpz_init (r2);
  42.   for (i = 0; i < reps; i++)
  43.     {
  44.       mpz_urandomb (bs, rands, 32);
  45.       size_range = mpz_get_ui (bs) % 10 + 2;
  46.       mpz_urandomb (bs, rands, size_range);
  47.       op1n = mpz_get_ui (bs);
  48.       mpz_rrandomb (op1, rands, op1n);
  49.       mpz_urandomb (bs, rands, size_range);
  50.       op2n = mpz_get_ui (bs);
  51.       mpz_rrandomb (op2, rands, op2n);
  52.       mpz_urandomb (bs, rands, 2);
  53.       bsi = mpz_get_ui (bs);
  54.       if ((bsi & 1) != 0)
  55. mpz_neg (op1, op1);
  56.       if ((bsi & 2) != 0)
  57. mpz_neg (op2, op2);
  58.       /* printf ("%ld %ldn", SIZ (multiplier), SIZ (multiplicand)); */
  59.       mpz_add (r1, op1, op2);
  60.       mpz_sub (r2, r1, op2);
  61.       if (mpz_cmp (r2, op1) != 0)
  62. dump_abort (i, "mpz_add or mpz_sub incorrect", op1, op2);
  63.       if (mpz_fits_ulong_p (op2))
  64. {
  65.   op2long = mpz_get_ui (op2);
  66.   mpz_add_ui (r1, op1, op2long);
  67.   mpz_sub_ui (r2, r1, op2long);
  68.   if (mpz_cmp (r2, op1) != 0)
  69.     dump_abort (i, "mpz_add_ui or mpz_sub_ui incorrect", op1, op2);
  70.   mpz_ui_sub (r1, op2long, op1);
  71.   mpz_sub_ui (r2, op1, op2long);
  72.   mpz_neg (r2, r2);
  73.   if (mpz_cmp (r1, r2) != 0)
  74.     dump_abort (i, "mpz_add_ui or mpz_ui_sub incorrect", op1, op2);
  75. }
  76.     }
  77.   mpz_clear (bs);
  78.   mpz_clear (op1);
  79.   mpz_clear (op2);
  80.   mpz_clear (r1);
  81.   mpz_clear (r2);
  82.   tests_end ();
  83.   exit (0);
  84. }
  85. void
  86. dump_abort (int i, char *s, mpz_t op1, mpz_t op2)
  87. {
  88.   fprintf (stderr, "ERROR: %s in test %dn", s, i);
  89.   fprintf (stderr, "op1 = "); debug_mp (op1, -16);
  90.   fprintf (stderr, "op2 = "); debug_mp (op2, -16);
  91.   abort();
  92. }
  93. void
  94. debug_mp (mpz_t x, int base)
  95. {
  96.   mpz_out_str (stderr, base, x); fputc ('n', stderr);
  97. }