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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_bdiv_qr -- Hensel division with precomputed inverse, returning quotient
  2.    and remainder.
  3.    Contributed to the GNU project by Torbjorn Granlund.
  4.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  5.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  6.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  7. Copyright 2006, 2007, 2009 Free Software Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. /* Computes Q = N / D mod B^n,
  22.     R = N - QD.  */
  23. mp_limb_t
  24. mpn_bdiv_qr (mp_ptr qp, mp_ptr rp,
  25.      mp_srcptr np, mp_size_t nn,
  26.      mp_srcptr dp, mp_size_t dn,
  27.      mp_ptr tp)
  28. {
  29.   mp_limb_t di;
  30.   mp_limb_t rh;
  31.   if (BELOW_THRESHOLD (dn, DC_BDIV_QR_THRESHOLD) ||
  32.       BELOW_THRESHOLD (nn - dn, DC_BDIV_QR_THRESHOLD))
  33.     {
  34.       MPN_COPY (tp, np, nn);
  35.       binvert_limb (di, dp[0]);  di = -di;
  36.       rh = mpn_sbpi1_bdiv_qr (qp, tp, nn, dp, dn, di);
  37.       MPN_COPY (rp, tp + nn - dn, dn);
  38.     }
  39.   else if (BELOW_THRESHOLD (dn, MU_BDIV_QR_THRESHOLD))
  40.     {
  41.       MPN_COPY (tp, np, nn);
  42.       binvert_limb (di, dp[0]);  di = -di;
  43.       rh = mpn_dcpi1_bdiv_qr (qp, tp, nn, dp, dn, di);
  44.       MPN_COPY (rp, tp + nn - dn, dn);
  45.     }
  46.   else
  47.     {
  48.       rh = mpn_mu_bdiv_qr (qp, rp, np, nn, dp, dn, tp);
  49.     }
  50.   return rh;
  51. }
  52. mp_size_t
  53. mpn_bdiv_qr_itch (mp_size_t nn, mp_size_t dn)
  54. {
  55.   if (BELOW_THRESHOLD (dn, MU_BDIV_QR_THRESHOLD))
  56.     return nn;
  57.   else
  58.     return  mpn_mu_bdiv_qr_itch (nn, dn);
  59. }