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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cmp_si(u,v) -- Compare an integer U with a single-word int V.
  2.    Return positive, zero, or negative based on if U > V, U == V, or U < V.
  3. Copyright 1991, 1993, 1994, 1995, 1996, 2000, 2001, 2002 Free Software
  4. Foundation, Inc.
  5. This file is part of the GNU MP Library.
  6. The GNU MP Library is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or (at your
  9. option) any later version.
  10. The GNU MP Library is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. int
  19. _mpz_cmp_si (mpz_srcptr u, signed long int v_digit)
  20. {
  21.   mp_size_t usize = u->_mp_size;
  22.   mp_size_t vsize;
  23.   mp_limb_t u_digit;
  24. #if GMP_NAIL_BITS != 0
  25.   /* FIXME.  This isn't very pretty.  */
  26.   mpz_t tmp;
  27.   mp_limb_t tt[2];
  28.   PTR(tmp) = tt;
  29.   ALLOC(tmp) = 2;
  30.   mpz_set_si (tmp, v_digit);
  31.   return mpz_cmp (u, tmp);
  32. #endif
  33.   vsize = 0;
  34.   if (v_digit > 0)
  35.     vsize = 1;
  36.   else if (v_digit < 0)
  37.     {
  38.       vsize = -1;
  39.       v_digit = -v_digit;
  40.     }
  41.   if (usize != vsize)
  42.     return usize - vsize;
  43.   if (usize == 0)
  44.     return 0;
  45.   u_digit = u->_mp_d[0];
  46.   if (u_digit == (mp_limb_t) (unsigned long) v_digit)
  47.     return 0;
  48.   if (u_digit > (mp_limb_t) (unsigned long) v_digit)
  49.     return usize;
  50.   else
  51.     return -usize;
  52. }