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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_cmp_ui -- Compare a float with an unsigned integer.
  2. Copyright 1993, 1994, 1995, 1999, 2001, 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 "gmp.h"
  15. #include "gmp-impl.h"
  16. int
  17. mpf_cmp_ui (mpf_srcptr u, unsigned long int vval)
  18. {
  19.   mp_srcptr up;
  20.   mp_size_t usize;
  21.   mp_exp_t uexp;
  22.   mp_limb_t ulimb;
  23.   uexp = u->_mp_exp;
  24.   usize = u->_mp_size;
  25.   /* 1. Is U negative?  */
  26.   if (usize < 0)
  27.     return -1;
  28.   /* We rely on usize being non-negative in the code that follows.  */
  29.   if (vval == 0)
  30.     return usize != 0;
  31.   /* 2. Are the exponents different (V's exponent == 1)?  */
  32. #if GMP_NAIL_BITS != 0
  33.   if (uexp > 1 + (vval > GMP_NUMB_MAX))
  34.     return 1;
  35.   if (uexp < 1 + (vval > GMP_NUMB_MAX))
  36.     return -1;
  37. #else
  38.   if (uexp > 1)
  39.     return 1;
  40.   if (uexp < 1)
  41.     return -1;
  42. #endif
  43.   up = u->_mp_d;
  44.   ulimb = up[usize - 1];
  45. #if GMP_NAIL_BITS != 0
  46.   if (usize >= 2 && uexp == 2)
  47.     {
  48.       if ((ulimb >> GMP_NAIL_BITS) != 0)
  49. return 1;
  50.       ulimb = (ulimb << GMP_NUMB_BITS) | up[usize - 2];
  51.       usize--;
  52.     }
  53. #endif
  54.   usize--;
  55.   /* 3. Compare the most significant mantissa limb with V.  */
  56.   if (ulimb > vval)
  57.     return 1;
  58.   else if (ulimb < vval)
  59.     return -1;
  60.   /* Ignore zeroes at the low end of U.  */
  61.   while (*up == 0)
  62.     {
  63.       up++;
  64.       usize--;
  65.     }
  66.   /* 4. Now, if the number of limbs are different, we have a difference
  67.      since we have made sure the trailing limbs are not zero.  */
  68.   if (usize > 0)
  69.     return 1;
  70.   /* Wow, we got zero even if we tried hard to avoid it.  */
  71.   return 0;
  72. }