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

数学计算

开发平台:

Unix_Linux

  1. /* Helper function for high degree Toom-Cook algorithms.
  2.    Contributed to the GNU project by Marco Bodrato.
  3.    THE FUNCTION IN THIS FILE IS INTERNAL WITH A MUTABLE INTERFACE.  IT IS ONLY
  4.    SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  5.    GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  6. Copyright 2009, 2010 Free Software Foundation, Inc.
  7. This file is part of the GNU MP Library.
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or (at your
  11. option) any later version.
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. /* Gets {pp,n} and (sign?-1:1)*{np,n}. Computes at once:
  21.      {pp,n} <- ({pp,n}+{np,n})/2^{ps+1}
  22.      {pn,n} <- ({pp,n}-{np,n})/2^{ns+1}
  23.    Finally recompose them obtaining:
  24.      {pp,n+off} <- {pp,n}+{np,n}*2^{off*GMP_NUMB_BITS}
  25. */
  26. void
  27. mpn_toom_couple_handling (mp_ptr pp, mp_size_t n, mp_ptr np,
  28.   int nsign, mp_size_t off, int ps, int ns)
  29. {
  30.   if (nsign) {
  31. #ifdef HAVE_NATIVE_mpn_rsh1sub_n
  32.     mpn_rsh1sub_n (np, pp, np, n);
  33. #else
  34.     mpn_sub_n (np, pp, np, n);
  35.     mpn_rshift (np, np, n, 1);
  36. #endif
  37.   } else {
  38. #ifdef HAVE_NATIVE_mpn_rsh1add_n
  39.     mpn_rsh1add_n (np, pp, np, n);
  40. #else
  41.     mpn_add_n (np, pp, np, n);
  42.     mpn_rshift (np, np, n, 1);
  43. #endif
  44.   }
  45. #ifdef HAVE_NATIVE_mpn_rsh1sub_n
  46.   if (ps == 1)
  47.     mpn_rsh1sub_n (pp, pp, np, n);
  48.   else
  49. #endif
  50.   {
  51.     mpn_sub_n (pp, pp, np, n);
  52.     if (ps > 0)
  53.       mpn_rshift (pp, pp, n, ps);
  54.   }
  55.   if (ns > 0)
  56.     mpn_rshift (np, np, n, ns);
  57.   pp[n] = mpn_add_n (pp+off, pp+off, np, n-off);
  58.   ASSERT_NOCARRY (mpn_add_1(pp+n, np+n-off, off, pp[n]) );
  59. }