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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_mul -- multiply two rational numbers.
  2. Copyright 1991, 1994, 1995, 1996, 2000, 2001, 2002 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. void
  18. mpq_mul (mpq_ptr prod, mpq_srcptr op1, mpq_srcptr op2)
  19. {
  20.   mpz_t gcd1, gcd2;
  21.   mpz_t tmp1, tmp2;
  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.   if (op1 == op2)
  29.     {
  30.       /* No need for any GCDs when squaring. */
  31.       mpz_mul (mpq_numref (prod), mpq_numref (op1), mpq_numref (op1));
  32.       mpz_mul (mpq_denref (prod), mpq_denref (op1), mpq_denref (op1));
  33.       return;
  34.     }
  35.   op1_num_size = ABS (op1->_mp_num._mp_size);
  36.   op1_den_size =      op1->_mp_den._mp_size;
  37.   op2_num_size = ABS (op2->_mp_num._mp_size);
  38.   op2_den_size =      op2->_mp_den._mp_size;
  39.   if (op1_num_size == 0 || op2_num_size == 0)
  40.     {
  41.       /* We special case this to simplify allocation logic; gcd(0,x) = x
  42.  is a singular case for the allocations.  */
  43.       prod->_mp_num._mp_size = 0;
  44.       prod->_mp_den._mp_d[0] = 1;
  45.       prod->_mp_den._mp_size = 1;
  46.       return;
  47.     }
  48.   TMP_MARK;
  49.   alloc = MIN (op1_num_size, op2_den_size);
  50.   MPZ_TMP_INIT (gcd1, alloc);
  51.   alloc = MIN (op2_num_size, op1_den_size);
  52.   MPZ_TMP_INIT (gcd2, alloc);
  53.   alloc = MAX (op1_num_size, op2_den_size);
  54.   MPZ_TMP_INIT (tmp1, alloc);
  55.   alloc = MAX (op2_num_size, op1_den_size);
  56.   MPZ_TMP_INIT (tmp2, alloc);
  57.   /* PROD might be identical to either operand, so don't store the result there
  58.      until we are finished with the input operands.  We can overwrite the
  59.      numerator of PROD when we are finished with the numerators of OP1 and
  60.      OP2.  */
  61.   mpz_gcd (gcd1, &(op1->_mp_num), &(op2->_mp_den));
  62.   mpz_gcd (gcd2, &(op2->_mp_num), &(op1->_mp_den));
  63.   mpz_divexact_gcd (tmp1, &(op1->_mp_num), gcd1);
  64.   mpz_divexact_gcd (tmp2, &(op2->_mp_num), gcd2);
  65.   mpz_mul (&(prod->_mp_num), tmp1, tmp2);
  66.   mpz_divexact_gcd (tmp1, &(op2->_mp_den), gcd1);
  67.   mpz_divexact_gcd (tmp2, &(op1->_mp_den), gcd2);
  68.   mpz_mul (&(prod->_mp_den), tmp1, tmp2);
  69.   TMP_FREE;
  70. }