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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_cmp_si -- Compare a float with a signed integer.
  2. Copyright 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2004 Free Software
  3. Foundation, 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. int
  18. mpf_cmp_si (mpf_srcptr u, long int vval)
  19. {
  20.   mp_srcptr up;
  21.   mp_size_t usize;
  22.   mp_exp_t uexp;
  23.   mp_limb_t ulimb;
  24.   int usign;
  25.   uexp = u->_mp_exp;
  26.   usize = u->_mp_size;
  27.   /* 1. Are the signs different?  */
  28.   if ((usize < 0) == (vval < 0)) /* don't use xor, type size may differ */
  29.     {
  30.       /* U and V are both non-negative or both negative.  */
  31.       if (usize == 0)
  32. /* vval >= 0 */
  33. return -(vval != 0);
  34.       if (vval == 0)
  35. /* usize >= 0 */
  36. return usize != 0;
  37.       /* Fall out.  */
  38.     }
  39.   else
  40.     {
  41.       /* Either U or V is negative, but not both.  */
  42.       return usize >= 0 ? 1 : -1;
  43.     }
  44.   /* U and V have the same sign and are both non-zero.  */
  45.   usign = usize >= 0 ? 1 : -1;
  46.   usize = ABS (usize);
  47.   vval = ABS (vval);
  48.   /* 2. Are the exponents different (V's exponent == 1)?  */
  49. #if GMP_NAIL_BITS != 0
  50.   if (uexp > 1 + ((unsigned long) vval > GMP_NUMB_MAX))
  51.     return usign;
  52.   if (uexp < 1 + ((unsigned long) vval > GMP_NUMB_MAX))
  53.     return -usign;
  54. #else
  55.   if (uexp > 1)
  56.     return usign;
  57.   if (uexp < 1)
  58.     return -usign;
  59. #endif
  60.   up = u->_mp_d;
  61.   ulimb = up[usize - 1];
  62. #if GMP_NAIL_BITS != 0
  63.   if (usize >= 2 && uexp == 2)
  64.     {
  65.       if ((ulimb >> GMP_NAIL_BITS) != 0)
  66. return usign;
  67.       ulimb = (ulimb << GMP_NUMB_BITS) | up[usize - 2];
  68.       usize--;
  69.     }
  70. #endif
  71.   usize--;
  72.   /* 3. Compare the most significant mantissa limb with V.  */
  73.   if (ulimb > (unsigned long) vval)
  74.     return usign;
  75.   else if (ulimb < (unsigned long) vval)
  76.     return -usign;
  77.   /* Ignore zeroes at the low end of U.  */
  78.   while (*up == 0)
  79.     {
  80.       up++;
  81.       usize--;
  82.     }
  83.   /* 4. Now, if the number of limbs are different, we have a difference
  84.      since we have made sure the trailing limbs are not zero.  */
  85.   if (usize > 0)
  86.     return usign;
  87.   /* Wow, we got zero even if we tried hard to avoid it.  */
  88.   return 0;
  89. }