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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_gcd_ui -- Calculate the greatest common divisor of two integers.
  2. Copyright 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2004 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 <stdio.h> /* for NULL */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. unsigned long int
  19. mpz_gcd_ui (mpz_ptr w, mpz_srcptr u, unsigned long int v)
  20. {
  21.   mp_size_t un;
  22.   mp_limb_t res;
  23. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  24.   if (v > GMP_NUMB_MAX)
  25.     {
  26.       mpz_t vz;
  27.       mp_limb_t vlimbs[2];
  28.       vlimbs[0] = v & GMP_NUMB_MASK;
  29.       vlimbs[1] = v >> GMP_NUMB_BITS;
  30.       PTR(vz) = vlimbs;
  31.       SIZ(vz) = 2;
  32.       mpz_gcd (w, u, vz);
  33.       /* because v!=0 we will have w<=v hence fitting a ulong */
  34.       ASSERT (mpz_fits_ulong_p (w));
  35.       return mpz_get_ui (w);
  36.     }
  37. #endif
  38.   un = ABSIZ(u);
  39.   if (un == 0)
  40.     res = v;
  41.   else if (v == 0)
  42.     {
  43.       if (w != NULL)
  44. {
  45.   if (u != w)
  46.     {
  47.       MPZ_REALLOC (w, un);
  48.       MPN_COPY (PTR(w), PTR(u), un);
  49.     }
  50.   SIZ(w) = un;
  51. }
  52.       /* Return u if it fits a ulong, otherwise 0. */
  53.       res = PTR(u)[0];
  54.       return (un == 1 && res <= ULONG_MAX ? res : 0);
  55.     }
  56.   else
  57.     res = mpn_gcd_1 (PTR(u), un, (mp_limb_t) v);
  58.   if (w != NULL)
  59.     {
  60.       PTR(w)[0] = res;
  61.       SIZ(w) = res != 0;
  62.     }
  63.   return res;
  64. }