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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_divexact -- finds quotient when known that quot * den == num && den != 0.
  2. Contributed to the GNU project by Niels M鰈ler.
  3. Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2005,
  4. 2006, 2007, 2009 Free Software 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. #include "longlong.h"
  19. void
  20. mpz_divexact (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den)
  21. {
  22.   mp_ptr qp;
  23.   mp_size_t qn;
  24.   mp_srcptr np, dp;
  25.   mp_size_t nn, dn;
  26.   TMP_DECL;
  27. #if WANT_ASSERT
  28.   {
  29.     mpz_t  rem;
  30.     mpz_init (rem);
  31.     mpz_tdiv_r (rem, num, den);
  32.     ASSERT (SIZ(rem) == 0);
  33.     mpz_clear (rem);
  34.   }
  35. #endif
  36.   nn = ABSIZ (num);
  37.   dn = ABSIZ (den);
  38.   qn = nn - dn + 1;
  39.   MPZ_REALLOC (quot, qn);
  40.   if (nn < dn)
  41.     {
  42.       /* This special case avoids segfaults below when the function is
  43.  incorrectly called with |N| < |D|, N != 0.  It also handles the
  44.  well-defined case N = 0.  */
  45.       SIZ(quot) = 0;
  46.       return;
  47.     }
  48.   TMP_MARK;
  49.   qp = PTR(quot);
  50.   if (quot == num || quot == den)
  51.     qp = TMP_ALLOC_LIMBS (qn);
  52.   np = PTR(num);
  53.   dp = PTR(den);
  54.   mpn_divexact (qp, np, nn, dp, dn);
  55.   MPN_NORMALIZE (qp, qn);
  56.   SIZ(quot) = (SIZ(num) ^ SIZ(den)) >= 0 ? qn : -qn;
  57.   if (qp != PTR(quot))
  58.     MPN_COPY (PTR(quot), qp, qn);
  59.   TMP_FREE;
  60. }