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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_lcm_ui -- least common multiple of mpz and ulong.
  2. Copyright 2001, 2002, 2004 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. #include "longlong.h"
  17. void
  18. mpz_lcm_ui (mpz_ptr r, mpz_srcptr u, unsigned long v)
  19. {
  20.   mp_size_t      usize;
  21.   mp_srcptr      up;
  22.   mp_ptr         rp;
  23.   unsigned long  g;
  24.   mp_limb_t      c;
  25. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  26.   if (v > GMP_NUMB_MAX)
  27.     {
  28.       mpz_t vz;
  29.       mp_limb_t vlimbs[2];
  30.       vlimbs[0] = v & GMP_NUMB_MASK;
  31.       vlimbs[1] = v >> GMP_NUMB_BITS;
  32.       PTR(vz) = vlimbs;
  33.       SIZ(vz) = 2;
  34.       mpz_lcm (r, u, vz);
  35.       return;
  36.     }
  37. #endif
  38.   /* result zero if either operand zero */
  39.   usize = SIZ(u);
  40.   if (usize == 0 || v == 0)
  41.     {
  42.       SIZ(r) = 0;
  43.       return;
  44.     }
  45.   usize = ABS(usize);
  46.   MPZ_REALLOC (r, usize+1);
  47.   up = PTR(u);
  48.   g = (unsigned long) mpn_gcd_1 (up, usize, (mp_limb_t) v);
  49.   v /= g;
  50.   rp = PTR(r);
  51.   c = mpn_mul_1 (rp, up, usize, (mp_limb_t) v);
  52.   rp[usize] = c;
  53.   usize += (c != 0);
  54.   SIZ(r) = usize;
  55. }