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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpq_equal.
  2. Copyright 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_one (mpq_srcptr x, mpq_srcptr y, int want)
  21. {
  22.   int  got;
  23.   MPQ_CHECK_FORMAT (x);
  24.   MPQ_CHECK_FORMAT (y);
  25.   got = mpq_equal (x, y);
  26.   if ((got != 0) != (want != 0))
  27.     {
  28.       printf ("mpq_equal got %d want %dn", got, want);
  29.       mpq_trace ("x", x);
  30.       mpq_trace ("y", y);
  31.       abort ();
  32.     }
  33. }
  34. void
  35. check_all (mpq_ptr x, mpq_ptr y, int want)
  36. {
  37.   check_one (x, y, want);
  38.   check_one (y, x, want);
  39.   mpq_neg (x, x);
  40.   mpq_neg (y, y);
  41.   check_one (x, y, want);
  42.   check_one (y, x, want);
  43. }
  44. #define SET4Z(z, size,l3,l2,l1,l0) 
  45.   SIZ(z) = size; PTR(z)[3] = l3; PTR(z)[2] = l2; PTR(z)[1] = l1; PTR(z)[0] = l0
  46. #define SET4(q, nsize,n3,n2,n1,n0, dsize,d3,d2,d1,d0)   
  47.   SET4Z (mpq_numref(q), nsize,n3,n2,n1,n0);             
  48.   SET4Z (mpq_denref(q), dsize,d3,d2,d1,d0)
  49. /* Exercise various combinations of same and slightly different values. */
  50. void
  51. check_various (void)
  52. {
  53.   mpq_t  x, y;
  54.   mpq_init (x);
  55.   mpq_init (y);
  56.   mpz_realloc (mpq_numref(x), (mp_size_t) 20);
  57.   mpz_realloc (mpq_denref(x), (mp_size_t) 20);
  58.   mpz_realloc (mpq_numref(y), (mp_size_t) 20);
  59.   mpz_realloc (mpq_denref(y), (mp_size_t) 20);
  60.   /* 0 == 0 */
  61.   SET4 (x, 0,13,12,11,10, 1,23,22,21,1);
  62.   SET4 (y, 0,33,32,31,30, 1,43,42,41,1);
  63.   check_all (x, y, 1);
  64.   /* 83/99 == 83/99 */
  65.   SET4 (x, 1,13,12,11,83, 1,23,22,21,99);
  66.   SET4 (y, 1,33,32,31,83, 1,43,42,41,99);
  67.   check_all (x, y, 1);
  68.   /* 1:2:3:4/5:6:7 == 1:2:3:4/5:6:7 */
  69.   SET4 (x, 4,1,2,3,4, 3,88,5,6,7);
  70.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  71.   check_all (x, y, 1);
  72.   /* various individual changes making != */
  73.   SET4 (x, 4,1,2,3,667, 3,88,5,6,7);
  74.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  75.   check_all (x, y, 0);
  76.   SET4 (x, 4,1,2,666,4, 3,88,5,6,7);
  77.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  78.   check_all (x, y, 0);
  79.   SET4 (x, 4,1,666,3,4, 3,88,5,6,7);
  80.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  81.   check_all (x, y, 0);
  82. #if GMP_NUMB_BITS != 62
  83.   SET4 (x, 4,667,2,3,4, 3,88,5,6,7);
  84.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  85.   check_all (x, y, 0);
  86. #endif
  87.   SET4 (x, 4,1,2,3,4, 3,88,5,6,667);
  88.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  89.   check_all (x, y, 0);
  90.   SET4 (x, 4,1,2,3,4, 3,88,5,667,7);
  91.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  92.   check_all (x, y, 0);
  93.   SET4 (x, 4,1,2,3,4, 3,88,666,6,7);
  94.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  95.   check_all (x, y, 0);
  96.   SET4 (x, -4,1,2,3,4, 3,88,5,6,7);
  97.   SET4 (y,  4,1,2,3,4, 3,99,5,6,7);
  98.   check_all (x, y, 0);
  99.   SET4 (x, 1,1,2,3,4, 3,88,5,6,7);
  100.   SET4 (y, 4,1,2,3,4, 3,99,5,6,7);
  101.   check_all (x, y, 0);
  102.   mpq_clear (x);
  103.   mpq_clear (y);
  104. }
  105. int
  106. main (void)
  107. {
  108.   tests_start ();
  109.   mp_trace_base = -16;
  110.   check_various ();
  111.   tests_end ();
  112.   exit (0);
  113. }