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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpq_cmp.
  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. #define NUM(x) (&((x)->_mp_num))
  20. #define DEN(x) (&((x)->_mp_den))
  21. #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0)
  22. int
  23. ref_mpq_cmp (mpq_t a, mpq_t b)
  24. {
  25.   mpz_t ai, bi;
  26.   int cc;
  27.   mpz_init (ai);
  28.   mpz_init (bi);
  29.   mpz_mul (ai, NUM (a), DEN (b));
  30.   mpz_mul (bi, NUM (b), DEN (a));
  31.   cc = mpz_cmp (ai, bi);
  32.   mpz_clear (ai);
  33.   mpz_clear (bi);
  34.   return cc;
  35. }
  36. #ifndef SIZE
  37. #define SIZE 8 /* increasing this lowers the probabilty of finding an error */
  38. #endif
  39. int
  40. main (int argc, char **argv)
  41. {
  42.   mpq_t a, b;
  43.   mp_size_t size;
  44.   int reps = 10000;
  45.   int i;
  46.   int cc, ccref;
  47.   tests_start ();
  48.   if (argc == 2)
  49.      reps = atoi (argv[1]);
  50.   mpq_init (a);
  51.   mpq_init (b);
  52.   for (i = 0; i < reps; i++)
  53.     {
  54.       size = urandom () % SIZE - SIZE/2;
  55.       mpz_random2 (NUM (a), size);
  56.       do
  57. {
  58.   size = urandom () % SIZE - SIZE/2;
  59.   mpz_random2 (DEN (a), size);
  60. }
  61.       while (mpz_cmp_ui (DEN (a), 0) == 0);
  62.       size = urandom () % SIZE - SIZE/2;
  63.       mpz_random2 (NUM (b), size);
  64.       do
  65. {
  66.   size = urandom () % SIZE - SIZE/2;
  67.   mpz_random2 (DEN (b), size);
  68. }
  69.       while (mpz_cmp_ui (DEN (b), 0) == 0);
  70.       mpq_canonicalize (a);
  71.       mpq_canonicalize (b);
  72.       ccref = ref_mpq_cmp (a, b);
  73.       cc = mpq_cmp (a, b);
  74.       if (SGN (ccref) != SGN (cc))
  75. abort ();
  76.     }
  77.   mpq_clear (a);
  78.   mpq_clear (b);
  79.   tests_end ();
  80.   exit (0);
  81. }