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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_gcdext -- Extended Greatest Common Divisor.
  2. Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 Free Software
  3. 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. /* Temporary storage: 3*(n+1) for u. n+1 for the matrix-vector
  19.    multiplications (if hgcd2 succeeds). If hgcd fails, n+1 limbs are
  20.    needed for the division, with most n for the quotient, and n+1 for
  21.    the product q u0. In all, 4n + 3. */
  22. mp_size_t
  23. mpn_gcdext_lehmer_n (mp_ptr gp, mp_ptr up, mp_size_t *usize,
  24.      mp_ptr ap, mp_ptr bp, mp_size_t n,
  25.      mp_ptr tp)
  26. {
  27.   mp_size_t ualloc = n + 1;
  28.   /* Keeps track of the second row of the reduction matrix
  29.    *
  30.    *   M = (v0, v1 ; u0, u1)
  31.    *
  32.    * which correspond to the first column of the inverse
  33.    *
  34.    *   M^{-1} = (u1, -v1; -u0, v0)
  35.    */
  36.   mp_size_t un;
  37.   mp_ptr u0;
  38.   mp_ptr u1;
  39.   mp_ptr u2;
  40.   MPN_ZERO (tp, 3*ualloc);
  41.   u0 = tp; tp += ualloc;
  42.   u1 = tp; tp += ualloc;
  43.   u2 = tp; tp += ualloc;
  44.   u1[0] = 1; un = 1;
  45.   /* FIXME: Handle n == 2 differently, after the loop? */
  46.   while (n >= 2)
  47.     {
  48.       struct hgcd_matrix1 M;
  49.       mp_limb_t ah, al, bh, bl;
  50.       mp_limb_t mask;
  51.       mask = ap[n-1] | bp[n-1];
  52.       ASSERT (mask > 0);
  53.       if (mask & GMP_NUMB_HIGHBIT)
  54. {
  55.   ah = ap[n-1]; al = ap[n-2];
  56.   bh = bp[n-1]; bl = bp[n-2];
  57. }
  58.       else if (n == 2)
  59. {
  60.   /* We use the full inputs without truncation, so we can
  61.      safely shift left. */
  62.   int shift;
  63.   count_leading_zeros (shift, mask);
  64.   ah = MPN_EXTRACT_NUMB (shift, ap[1], ap[0]);
  65.   al = ap[0] << shift;
  66.   bh = MPN_EXTRACT_NUMB (shift, bp[1], bp[0]);
  67.   bl = bp[0] << shift;
  68. }
  69.       else
  70. {
  71.   int shift;
  72.   count_leading_zeros (shift, mask);
  73.   ah = MPN_EXTRACT_NUMB (shift, ap[n-1], ap[n-2]);
  74.   al = MPN_EXTRACT_NUMB (shift, ap[n-2], ap[n-3]);
  75.   bh = MPN_EXTRACT_NUMB (shift, bp[n-1], bp[n-2]);
  76.   bl = MPN_EXTRACT_NUMB (shift, bp[n-2], bp[n-3]);
  77. }
  78.       /* Try an mpn_nhgcd2 step */
  79.       if (mpn_hgcd2 (ah, al, bh, bl, &M))
  80. {
  81.   n = mpn_hgcd_mul_matrix1_inverse_vector (&M, tp, ap, bp, n);
  82.   MP_PTR_SWAP (ap, tp);
  83.   un = mpn_hgcd_mul_matrix1_vector(&M, u2, u0, u1, un);
  84.   MP_PTR_SWAP (u0, u2);
  85. }
  86.       else
  87. {
  88.   /* mpn_hgcd2 has failed. Then either one of a or b is very
  89.      small, or the difference is very small. Perform one
  90.      subtraction followed by one division. */
  91.   mp_size_t gn;
  92.   mp_size_t updated_un = un;
  93.   /* Temporary storage n for the quotient and ualloc for the
  94.      new cofactor. */
  95.   n = mpn_gcdext_subdiv_step (gp, &gn, up, usize, ap, bp, n,
  96.       u0, u1, &updated_un, tp, u2);
  97.   if (n == 0)
  98.     return gn;
  99.   un = updated_un;
  100. }
  101.     }
  102.   ASSERT_ALWAYS (ap[0] > 0);
  103.   ASSERT_ALWAYS (bp[0] > 0);
  104.   if (ap[0] == bp[0])
  105.     {
  106.       int c;
  107.       /* Which cofactor to return now? Candidates are +u1 and -u0,
  108.  depending on which of a and b was most recently reduced,
  109.  which we don't keep track of. So compare and get the smallest
  110.  one. */
  111.       gp[0] = ap[0];
  112.       MPN_CMP (c, u0, u1, un);
  113.       ASSERT (c != 0 || (un == 1 && u0[0] == 1 && u1[0] == 1));
  114.       if (c < 0)
  115. {
  116.   MPN_NORMALIZE (u0, un);
  117.   MPN_COPY (up, u0, un);
  118.   *usize = -un;
  119. }
  120.       else
  121. {
  122.   MPN_NORMALIZE_NOT_ZERO (u1, un);
  123.   MPN_COPY (up, u1, un);
  124.   *usize = un;
  125. }
  126.       return 1;
  127.     }
  128.   else
  129.     {
  130.       mp_limb_t uh, vh;
  131.       mp_limb_signed_t u;
  132.       mp_limb_signed_t v;
  133.       int negate;
  134.       gp[0] = mpn_gcdext_1 (&u, &v, ap[0], bp[0]);
  135.       /* Set up = u u1 - v u0. Keep track of size, un grows by one or
  136.  two limbs. */
  137.       if (u == 0)
  138. {
  139.   ASSERT (v == 1);
  140.   MPN_NORMALIZE (u0, un);
  141.   MPN_COPY (up, u0, un);
  142.   *usize = -un;
  143.   return 1;
  144. }
  145.       else if (v == 0)
  146. {
  147.   ASSERT (u == 1);
  148.   MPN_NORMALIZE (u1, un);
  149.   MPN_COPY (up, u1, un);
  150.   *usize = un;
  151.   return 1;
  152. }
  153.       else if (u > 0)
  154. {
  155.   negate = 0;
  156.   ASSERT (v < 0);
  157.   v = -v;
  158. }
  159.       else
  160. {
  161.   negate = 1;
  162.   ASSERT (v > 0);
  163.   u = -u;
  164. }
  165.       uh = mpn_mul_1 (up, u1, un, u);
  166.       vh = mpn_addmul_1 (up, u0, un, v);
  167.       if ( (uh | vh) > 0)
  168. {
  169.   uh += vh;
  170.   up[un++] = uh;
  171.   if (uh < vh)
  172.     up[un++] = 1;
  173. }
  174.       MPN_NORMALIZE_NOT_ZERO (up, un);
  175.       *usize = negate ? -un : un;
  176.       return 1;
  177.     }
  178. }