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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cmpabs_d -- compare absolute values of mpz and double.
  2. Copyright 2001, 2002, 2003 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 "config.h"
  15. #if HAVE_FLOAT_H
  16. #include <float.h>  /* for DBL_MAX */
  17. #endif
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. #define RETURN_CMP(zl, dl)              
  21.   do {                                  
  22.     zlimb = (zl);                       
  23.     dlimb = (dl);                       
  24.     if (zlimb != dlimb)                 
  25.       return (zlimb >= dlimb ? 1 : -1); 
  26.   } while (0)
  27. #define RETURN_NONZERO(ptr, size, val)          
  28.   do {                                          
  29.     mp_size_t __i;                              
  30.     for (__i = (size)-1; __i >= 0; __i--)       
  31.       if ((ptr)[__i] != 0)                      
  32.         return val;                             
  33.     return 0;                                   
  34.   } while (0)
  35. int
  36. mpz_cmpabs_d (mpz_srcptr z, double d)
  37. {
  38.   mp_limb_t  darray[LIMBS_PER_DOUBLE], zlimb, dlimb;
  39.   mp_srcptr  zp;
  40.   mp_size_t  zsize;
  41.   int        dexp;
  42.   /* d=NaN is an invalid operation, there's no sensible return value.
  43.      d=Inf or -Inf is always bigger than z.  */
  44.   DOUBLE_NAN_INF_ACTION (d, __gmp_invalid_operation (), return -1);
  45.   /* 1. Check for either operand zero. */
  46.   zsize = SIZ(z);
  47.   if (d == 0.0)
  48.     return (zsize != 0);
  49.   if (zsize == 0)
  50.     return (d != 0 ? -1 : 0);
  51.   /* 2. Ignore signs. */
  52.   zsize = ABS(zsize);
  53.   d = ABS(d);
  54.   /* 3. Small d, knowing abs(z) >= 1. */
  55.   if (d < 1.0)
  56.     return 1;
  57.   dexp = __gmp_extract_double (darray, d);
  58.   ASSERT (dexp >= 1);
  59.   /* 4. Check for different high limb positions. */
  60.   if (zsize != dexp)
  61.     return (zsize >= dexp ? 1 : -1);
  62.   /* 5. Limb data. */
  63.   zp = PTR(z);
  64. #if LIMBS_PER_DOUBLE == 2
  65.   RETURN_CMP (zp[zsize-1], darray[1]);
  66.   if (zsize == 1)
  67.     return (darray[0] != 0 ? -1 : 0);
  68.   RETURN_CMP (zp[zsize-2], darray[0]);
  69.   RETURN_NONZERO (zp, zsize-2, 1);
  70. #endif
  71. #if LIMBS_PER_DOUBLE == 3
  72.   RETURN_CMP (zp[zsize-1], darray[2]);
  73.   if (zsize == 1)
  74.     return ((darray[0] | darray[1]) != 0 ? -1 : 0);
  75.   RETURN_CMP (zp[zsize-2], darray[1]);
  76.   if (zsize == 2)
  77.     return (darray[0] != 0 ? -1 : 0);
  78.   RETURN_CMP (zp[zsize-3], darray[0]);
  79.   RETURN_NONZERO (zp, zsize-3, 1);
  80. #endif
  81. #if LIMBS_PER_DOUBLE >= 4
  82.   {
  83.     int i;
  84.     for (i = 1; i <= LIMBS_PER_DOUBLE; i++)
  85.       {
  86. RETURN_CMP (zp[zsize-i], darray[LIMBS_PER_DOUBLE-i]);
  87. if (i >= zsize)
  88.   RETURN_NONZERO (darray, LIMBS_PER_DOUBLE-i, -1);
  89.       }
  90.     RETURN_NONZERO (zp, zsize-LIMBS_PER_DOUBLE, 1);
  91.   }
  92. #endif
  93. }