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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_tdiv_qr(quot,rem,dividend,divisor) -- Set QUOT to DIVIDEND/DIVISOR,
  2.    and REM to DIVIDEND mod DIVISOR.
  3. Copyright 1991, 1993, 1994, 2000, 2001, 2005 Free Software Foundation, 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. #include "longlong.h"
  18. #ifdef BERKELEY_MP
  19. #include "mp.h"
  20. #endif
  21. void
  22. #ifndef BERKELEY_MP
  23. mpz_tdiv_qr (mpz_ptr quot, mpz_ptr rem, mpz_srcptr num, mpz_srcptr den)
  24. #else /* BERKELEY_MP */
  25. mdiv (mpz_srcptr num, mpz_srcptr den, mpz_ptr quot, mpz_ptr rem)
  26. #endif /* BERKELEY_MP */
  27. {
  28.   mp_size_t ql;
  29.   mp_size_t ns, ds, nl, dl;
  30.   mp_ptr np, dp, qp, rp;
  31.   TMP_DECL;
  32.   ns = SIZ (num);
  33.   ds = SIZ (den);
  34.   nl = ABS (ns);
  35.   dl = ABS (ds);
  36.   ql = nl - dl + 1;
  37.   if (dl == 0)
  38.     DIVIDE_BY_ZERO;
  39.   MPZ_REALLOC (rem, dl);
  40.   if (ql <= 0)
  41.     {
  42.       if (num != rem)
  43. {
  44.   mp_ptr np, rp;
  45.   np = PTR (num);
  46.   rp = PTR (rem);
  47.   MPN_COPY (rp, np, nl);
  48.   SIZ (rem) = SIZ (num);
  49. }
  50.       /* This needs to follow the assignment to rem, in case the
  51.  numerator and quotient are the same.  */
  52.       SIZ (quot) = 0;
  53.       return;
  54.     }
  55.   MPZ_REALLOC (quot, ql);
  56.   TMP_MARK;
  57.   qp = PTR (quot);
  58.   rp = PTR (rem);
  59.   np = PTR (num);
  60.   dp = PTR (den);
  61.   /* FIXME: We should think about how to handle the temporary allocation.
  62.      Perhaps mpn_tdiv_qr should handle it, since it anyway often needs to
  63.      allocate temp space.  */
  64.   /* Copy denominator to temporary space if it overlaps with the quotient
  65.      or remainder.  */
  66.   if (dp == rp || dp == qp)
  67.     {
  68.       mp_ptr tp;
  69.       tp = TMP_ALLOC_LIMBS (dl);
  70.       MPN_COPY (tp, dp, dl);
  71.       dp = tp;
  72.     }
  73.   /* Copy numerator to temporary space if it overlaps with the quotient or
  74.      remainder.  */
  75.   if (np == rp || np == qp)
  76.     {
  77.       mp_ptr tp;
  78.       tp = TMP_ALLOC_LIMBS (nl);
  79.       MPN_COPY (tp, np, nl);
  80.       np = tp;
  81.     }
  82.   mpn_tdiv_qr (qp, rp, 0L, np, nl, dp, dl);
  83.   ql -=  qp[ql - 1] == 0;
  84.   MPN_NORMALIZE (rp, dl);
  85.   SIZ (quot) = (ns ^ ds) >= 0 ? ql : -ql;
  86.   SIZ (rem) = ns >= 0 ? dl : -dl;
  87.   TMP_FREE;
  88. }