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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_cmp_ui(u,vn,vd) -- Compare U with Vn/Vd.  Return positive, zero, or
  2.    negative based on if U > V, U == V, or U < V.  Vn and Vd may have
  3.    common factors.
  4. Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2003, 2005 Free Software
  5. Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. int
  20. _mpq_cmp_ui (const MP_RAT *op1, unsigned long int num2, unsigned long int den2)
  21. {
  22.   mp_size_t num1_size = op1->_mp_num._mp_size;
  23.   mp_size_t den1_size = op1->_mp_den._mp_size;
  24.   mp_size_t tmp1_size, tmp2_size;
  25.   mp_ptr tmp1_ptr, tmp2_ptr;
  26.   mp_limb_t cy_limb;
  27.   int cc;
  28.   TMP_DECL;
  29. #if GMP_NAIL_BITS != 0
  30.   if ((num2 | den2) > GMP_NUMB_MAX)
  31.     {
  32.       mpq_t op2;
  33.       mpq_init (op2);
  34.       mpz_set_ui (mpq_numref (op2), num2);
  35.       mpz_set_ui (mpq_denref (op2), den2);
  36.       cc = mpq_cmp (op1, op2);
  37.       mpq_clear (op2);
  38.       return cc;
  39.     }
  40. #endif
  41.   /* need canonical sign to get right result */
  42.   ASSERT (den1_size > 0);
  43.   if (den2 == 0)
  44.     DIVIDE_BY_ZERO;
  45.   if (num1_size == 0)
  46.     return -(num2 != 0);
  47.   if (num1_size < 0)
  48.     return num1_size;
  49.   if (num2 == 0)
  50.     return num1_size;
  51.   /* NUM1 x DEN2 is either TMP1_SIZE limbs or TMP1_SIZE-1 limbs.
  52.      Same for NUM1 x DEN1 with respect to TMP2_SIZE.  */
  53.   if (num1_size > den1_size + 1)
  54.     /* NUM1 x DEN2 is surely larger in magnitude than NUM2 x DEN1.  */
  55.     return num1_size;
  56.   if (den1_size > num1_size + 1)
  57.     /* NUM1 x DEN2 is surely smaller in magnitude than NUM2 x DEN1.  */
  58.     return -num1_size;
  59.   TMP_MARK;
  60.   tmp1_ptr = TMP_ALLOC_LIMBS (num1_size + 1);
  61.   tmp2_ptr = TMP_ALLOC_LIMBS (den1_size + 1);
  62.   cy_limb = mpn_mul_1 (tmp1_ptr, op1->_mp_num._mp_d, num1_size,
  63.                        (mp_limb_t) den2);
  64.   tmp1_ptr[num1_size] = cy_limb;
  65.   tmp1_size = num1_size + (cy_limb != 0);
  66.   cy_limb = mpn_mul_1 (tmp2_ptr, op1->_mp_den._mp_d, den1_size,
  67.                        (mp_limb_t) num2);
  68.   tmp2_ptr[den1_size] = cy_limb;
  69.   tmp2_size = den1_size + (cy_limb != 0);
  70.   cc = tmp1_size - tmp2_size != 0
  71.     ? tmp1_size - tmp2_size : mpn_cmp (tmp1_ptr, tmp2_ptr, tmp1_size);
  72.   TMP_FREE;
  73.   return cc;
  74. }