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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_trialdiv -- find small factors of an mpn number using trial division.
  2.    Contributed to the GNU project by Torbjorn Granlund.
  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. /*
  19.    Fast, division-free trial division for GMP.
  20.    This function will find the first (smallest) factor represented in
  21.    trialdivtab.h.  It does not stop the factoring effort just because it has
  22.    reached some sensible limit, such as the square root of the input number.
  23.    The caller can limit the factoring effort by passing NPRIMES.  The function
  24.    well then divide to *at least* that limit.  A position which only
  25.    mpn_trialdiv can make sense of is returned in the WHERE parameter.  It can
  26.    be used for restarting the factoring effort; the first call should pass 0
  27.    here.
  28. */
  29. #include "gmp.h"
  30. #include "gmp-impl.h"
  31. struct gmp_primes_dtab {
  32.   mp_limb_t binv;
  33.   mp_limb_t lim;
  34. };
  35. struct gmp_primes_ptab {
  36.   mp_limb_t ppp; /* primes, multiplied together */
  37.   mp_limb_t cps[7]; /* ppp values pre-computed for mpn_mod_1s_4p */
  38.   unsigned int idx:24; /* index of  first primes in dtab */
  39.   unsigned int np :8; /* number of primes related to this entry */
  40. };
  41. #define P(p,inv,lim) {inv,lim}
  42. #include "trialdivtab.h"
  43. #define PTAB_LINES (sizeof (gmp_primes_ptab) / sizeof (gmp_primes_ptab[0]))
  44. /* Attempt to find a factor of T using trial division.
  45.    Input: A non-negative number T.
  46.    Output: non-zero if we found a factor, zero otherwise.  To get the actual
  47.    prime factor, compute the mod B inverse of the return value.  */
  48. /* FIXME: We could optimize out one of the outer loop conditions if we
  49.    had a final ptab entry with a huge nd field.  */
  50. mp_limb_t
  51. mpn_trialdiv (mp_srcptr tp, mp_size_t tn, mp_size_t nprimes, int *where)
  52. {
  53.   mp_limb_t ppp;
  54.   mp_limb_t *cps;
  55.   struct gmp_primes_dtab *dp;
  56.   long i, j, idx, np;
  57.   mp_limb_t r, q;
  58.   ASSERT (tn >= 1);
  59.   for (i = *where; i < PTAB_LINES; i++)
  60.     {
  61.       ppp = gmp_primes_ptab[i].ppp;
  62.       cps = gmp_primes_ptab[i].cps;
  63. #if __GNU_MP_VERSION == 4 && __GNU_MP_VERSION_MINOR < 4
  64.       if (tn < 4)
  65. r = mpn_mod_1 (tp, tn, ppp); /* FIXME */
  66.       else
  67. #endif
  68. r = mpn_mod_1s_4p (tp, tn, ppp << cps[1], cps);
  69.       idx = gmp_primes_ptab[i].idx;
  70.       np = gmp_primes_ptab[i].np;
  71.       /* Check divisibility by individual primes.  */
  72.       dp = &gmp_primes_dtab[idx] + np;
  73.       for (j = -np; j < 0; j++)
  74. {
  75.   q = r * dp[j].binv;
  76.   if (q <= dp[j].lim)
  77.     {
  78.       *where = i;
  79.       return dp[j].binv;
  80.     }
  81. }
  82.       nprimes -= np;
  83.       if (nprimes <= 0)
  84. return 0;
  85.     }
  86.   return 0;
  87. }