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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cmp_ui.c -- Compare a mpz_t a with an mp_limb_t b.  Return positive,
  2.   zero, or negative based on if a > b, a == b, or a < b.
  3. Copyright 1991, 1993, 1994, 1995, 1996, 2001, 2002 Free Software Foundation,
  4. 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_ui (mpz_srcptr u, unsigned long int v_digit)
  20. {
  21.   mp_ptr up;
  22.   mp_size_t un;
  23.   mp_limb_t ul;
  24.   up = PTR(u);
  25.   un = SIZ(u);
  26.   if (un == 0)
  27.     return -(v_digit != 0);
  28.   if (un == 1)
  29.     {
  30.       ul = up[0];
  31.       if (ul > v_digit)
  32. return 1;
  33.       if (ul < v_digit)
  34. return -1;
  35.       return 0;
  36.     }
  37. #if GMP_NAIL_BITS != 0
  38.   if (v_digit > GMP_NUMB_MAX)
  39.     {
  40.       if (un == 2)
  41. {
  42.   ul = up[0] + (up[1] << GMP_NUMB_BITS);
  43.   if ((up[1] >> GMP_NAIL_BITS) != 0)
  44.     return 1;
  45.   if (ul > v_digit)
  46.     return 1;
  47.   if (ul < v_digit)
  48.     return -1;
  49.   return 0;
  50. }
  51.     }
  52. #endif
  53.   return un > 0 ? 1 : -1;
  54. }