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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_div -- divide two rational numbers.
  2. Copyright 1991, 1994, 1995, 1996, 2000, 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. void
  17. mpq_div (mpq_ptr quot, mpq_srcptr op1, mpq_srcptr op2)
  18. {
  19.   mpz_t gcd1, gcd2;
  20.   mpz_t tmp1, tmp2;
  21.   mpz_t numtmp;
  22.   mp_size_t op1_num_size;
  23.   mp_size_t op1_den_size;
  24.   mp_size_t op2_num_size;
  25.   mp_size_t op2_den_size;
  26.   mp_size_t alloc;
  27.   TMP_DECL;
  28.   op1_num_size = ABS (op1->_mp_num._mp_size);
  29.   op1_den_size =      op1->_mp_den._mp_size;
  30.   op2_num_size = ABS (op2->_mp_num._mp_size);
  31.   op2_den_size =      op2->_mp_den._mp_size;
  32.   if (op2_num_size == 0)
  33.     DIVIDE_BY_ZERO;
  34.   if (op1_num_size == 0)
  35.     {
  36.       /* We special case this to simplify allocation logic; gcd(0,x) = x
  37.  is a singular case for the allocations.  */
  38.       quot->_mp_num._mp_size = 0;
  39.       quot->_mp_den._mp_d[0] = 1;
  40.       quot->_mp_den._mp_size = 1;
  41.       return;
  42.     }
  43.   TMP_MARK;
  44.   alloc = MIN (op1_num_size, op2_num_size);
  45.   MPZ_TMP_INIT (gcd1, alloc);
  46.   alloc = MIN (op1_den_size, op2_den_size);
  47.   MPZ_TMP_INIT (gcd2, alloc);
  48.   alloc = MAX (op1_num_size, op2_num_size);
  49.   MPZ_TMP_INIT (tmp1, alloc);
  50.   alloc = MAX (op1_den_size, op2_den_size);
  51.   MPZ_TMP_INIT (tmp2, alloc);
  52.   alloc = op1_num_size + op2_den_size;
  53.   MPZ_TMP_INIT (numtmp, alloc);
  54.   /* QUOT might be identical to either operand, so don't store the result there
  55.      until we are finished with the input operands.  We can overwrite the
  56.      numerator of QUOT when we are finished with the numerators of OP1 and
  57.      OP2.  */
  58.   mpz_gcd (gcd1, &(op1->_mp_num), &(op2->_mp_num));
  59.   mpz_gcd (gcd2, &(op2->_mp_den), &(op1->_mp_den));
  60.   mpz_divexact_gcd (tmp1, &(op1->_mp_num), gcd1);
  61.   mpz_divexact_gcd (tmp2, &(op2->_mp_den), gcd2);
  62.   mpz_mul (numtmp, tmp1, tmp2);
  63.   mpz_divexact_gcd (tmp1, &(op2->_mp_num), gcd1);
  64.   mpz_divexact_gcd (tmp2, &(op1->_mp_den), gcd2);
  65.   mpz_mul (&(quot->_mp_den), tmp1, tmp2);
  66.   /* We needed to go via NUMTMP to take care of QUOT being the same as OP2.
  67.      Now move NUMTMP to QUOT->_mp_num.  */
  68.   mpz_set (&(quot->_mp_num), numtmp);
  69.   /* Keep the denominator positive.  */
  70.   if (quot->_mp_den._mp_size < 0)
  71.     {
  72.       quot->_mp_den._mp_size = -quot->_mp_den._mp_size;
  73.       quot->_mp_num._mp_size = -quot->_mp_num._mp_size;
  74.     }
  75.   TMP_FREE;
  76. }