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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_cmp -- Compare two floats.
  2. Copyright 1993, 1994, 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 "gmp.h"
  15. #include "gmp-impl.h"
  16. int
  17. mpf_cmp (mpf_srcptr u, mpf_srcptr v)
  18. {
  19.   mp_srcptr up, vp;
  20.   mp_size_t usize, vsize;
  21.   mp_exp_t uexp, vexp;
  22.   int cmp;
  23.   int usign;
  24.   uexp = u->_mp_exp;
  25.   vexp = v->_mp_exp;
  26.   usize = u->_mp_size;
  27.   vsize = v->_mp_size;
  28.   /* 1. Are the signs different?  */
  29.   if ((usize ^ vsize) >= 0)
  30.     {
  31.       /* U and V are both non-negative or both negative.  */
  32.       if (usize == 0)
  33. /* vsize >= 0 */
  34. return -(vsize != 0);
  35.       if (vsize == 0)
  36. /* usize >= 0 */
  37. return usize != 0;
  38.       /* Fall out.  */
  39.     }
  40.   else
  41.     {
  42.       /* Either U or V is negative, but not both.  */
  43.       return usize >= 0 ? 1 : -1;
  44.     }
  45.   /* U and V have the same sign and are both non-zero.  */
  46.   usign = usize >= 0 ? 1 : -1;
  47.   /* 2. Are the exponents different?  */
  48.   if (uexp > vexp)
  49.     return usign;
  50.   if (uexp < vexp)
  51.     return -usign;
  52.   usize = ABS (usize);
  53.   vsize = ABS (vsize);
  54.   up = u->_mp_d;
  55.   vp = v->_mp_d;
  56. #define STRICT_MPF_NORMALIZATION 0
  57. #if ! STRICT_MPF_NORMALIZATION
  58.   /* Ignore zeroes at the low end of U and V.  */
  59.   while (up[0] == 0)
  60.     {
  61.       up++;
  62.       usize--;
  63.     }
  64.   while (vp[0] == 0)
  65.     {
  66.       vp++;
  67.       vsize--;
  68.     }
  69. #endif
  70.   if (usize > vsize)
  71.     {
  72.       cmp = mpn_cmp (up + usize - vsize, vp, vsize);
  73.       if (cmp == 0)
  74. return usign;
  75.     }
  76.   else if (vsize > usize)
  77.     {
  78.       cmp = mpn_cmp (up, vp + vsize - usize, usize);
  79.       if (cmp == 0)
  80. return -usign;
  81.     }
  82.   else
  83.     {
  84.       cmp = mpn_cmp (up, vp, usize);
  85.       if (cmp == 0)
  86. return 0;
  87.     }
  88.   return cmp > 0 ? usign : -usign;
  89. }