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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_eq -- Compare two floats up to a specified bit #.
  2. Copyright 1993, 1995, 1996, 2001, 2002, 2008, 2009 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "longlong.h"
  18. int
  19. mpf_eq (mpf_srcptr u, mpf_srcptr v, mp_bitcnt_t n_bits)
  20. {
  21.   mp_srcptr up, vp, p;
  22.   mp_size_t usize, vsize, minsize, maxsize, n_limbs, i, size;
  23.   mp_exp_t uexp, vexp;
  24.   mp_limb_t diff;
  25.   int cnt;
  26.   uexp = u->_mp_exp;
  27.   vexp = v->_mp_exp;
  28.   usize = u->_mp_size;
  29.   vsize = v->_mp_size;
  30.   /* 1. Are the signs different?  */
  31.   if ((usize ^ vsize) >= 0)
  32.     {
  33.       /* U and V are both non-negative or both negative.  */
  34.       if (usize == 0)
  35. return vsize == 0;
  36.       if (vsize == 0)
  37. return 0;
  38.       /* Fall out.  */
  39.     }
  40.   else
  41.     {
  42.       /* Either U or V is negative, but not both.  */
  43.       return 0;
  44.     }
  45.   /* U and V have the same sign and are both non-zero.  */
  46.   /* 2. Are the exponents different?  */
  47.   if (uexp != vexp)
  48.     return 0;
  49.   usize = ABS (usize);
  50.   vsize = ABS (vsize);
  51.   up = u->_mp_d;
  52.   vp = v->_mp_d;
  53.   up += usize; /* point just above most significant limb */
  54.   vp += vsize; /* point just above most significant limb */
  55.   count_leading_zeros (cnt, up[-1]);
  56.   if ((vp[-1] >> (GMP_LIMB_BITS - 1 - cnt)) != 1)
  57.     return 0; /* msb positions different */
  58.   n_bits += cnt - GMP_NAIL_BITS;
  59.   n_limbs = (n_bits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS;
  60.   usize = MIN (usize, n_limbs);
  61.   vsize = MIN (vsize, n_limbs);
  62. #if 0
  63.   /* Ignore zeros at the low end of U and V.  */
  64.   while (up[0] == 0)
  65.     up++, usize--;
  66.   while (vp[0] == 0)
  67.     vp++, vsize--;
  68. #endif
  69.   minsize = MIN (usize, vsize);
  70.   maxsize = usize + vsize - minsize;
  71.   up -= minsize; /* point at most significant common limb */
  72.   vp -= minsize; /* point at most significant common limb */
  73.   /* Compare the most significant part which has explicit limbs for U and V. */
  74.   for (i = minsize - 1; i > 0; i--)
  75.     {
  76.       if (up[i] != vp[i])
  77. return 0;
  78.     }
  79.   n_bits -= (maxsize - 1) * GMP_NUMB_BITS;
  80.   size = maxsize - minsize;
  81.   if (size != 0)
  82.     {
  83.       if (up[0] != vp[0])
  84. return 0;
  85.       /* Now either U or V has its limbs consumed, i.e, continues with an
  86.  infinite number of implicit zero limbs.  Check that the other operand
  87.  has just zeros in the corresponding, relevant part.  */
  88.       if (usize > vsize)
  89. p = up - size;
  90.       else
  91. p = vp - size;
  92.       for (i = size - 1; i > 0; i--)
  93. {
  94.   if (p[i] != 0)
  95.     return 0;
  96. }
  97.       diff = p[0];
  98.     }
  99.   else
  100.     {
  101.       /* Both U or V has its limbs consumed.  */
  102.       diff = up[0] ^ vp[0];
  103.     }
  104.   if (n_bits < GMP_NUMB_BITS)
  105.     diff >>= GMP_NUMB_BITS - n_bits;
  106.   return diff == 0;
  107. }