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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_toom_eval_dgr3_pm1 -- Evaluate a degree 3 polynomial in +1 and -1
  2.    Contributed to the GNU project by Niels M鰈ler
  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 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. int
  21. mpn_toom_eval_dgr3_pm1 (mp_ptr xp1, mp_ptr xm1,
  22. mp_srcptr xp, mp_size_t n, mp_size_t x3n, mp_ptr tp)
  23. {
  24.   int neg;
  25.   ASSERT (x3n > 0);
  26.   ASSERT (x3n <= n);
  27.   xp1[n] = mpn_add_n (xp1, xp, xp + 2*n, n);
  28.   tp[n] = mpn_add (tp, xp + n, n, xp + 3*n, x3n);
  29.   neg = (mpn_cmp (xp1, tp, n + 1) < 0) ? ~0 : 0;
  30. #if HAVE_NATIVE_mpn_add_n_sub_n
  31.   if (neg)
  32.     mpn_add_n_sub_n (xp1, xm1, tp, xp1, n + 1);
  33.   else
  34.     mpn_add_n_sub_n (xp1, xm1, xp1, tp, n + 1);
  35. #else
  36.   if (neg)
  37.     mpn_sub_n (xm1, tp, xp1, n + 1);
  38.   else
  39.     mpn_sub_n (xm1, xp1, tp, n + 1);
  40.   mpn_add_n (xp1, xp1, tp, n + 1);
  41. #endif
  42.   ASSERT (xp1[n] <= 3);
  43.   ASSERT (xm1[n] <= 1);
  44.   return neg;
  45. }