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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_congruent_ui_p -- test congruence of mpz and ulong.
  2. Copyright 2000, 2001, 2002 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. /* There's some explicit checks for c<d since it seems reasonably likely an
  18.    application might use that in a test.
  19.    Hopefully the compiler can generate something good for r==(c%d), though
  20.    if modexact is being used exclusively then that's not reached.  */
  21. int
  22. mpz_congruent_ui_p (mpz_srcptr a, unsigned long cu, unsigned long du)
  23. {
  24.   mp_srcptr  ap;
  25.   mp_size_t  asize;
  26.   mp_limb_t  c, d, r;
  27.   if (UNLIKELY (du == 0))
  28.     return (mpz_cmp_ui (a, cu) == 0);
  29.   asize = SIZ(a);
  30.   if (asize == 0)
  31.     {
  32.       if (cu < du)
  33.         return cu == 0;
  34.       else
  35.         return (cu % du) == 0;
  36.     }
  37.   /* For nails don't try to be clever if c or d is bigger than a limb, just
  38.      fake up some mpz_t's and go to the main mpz_congruent_p.  */
  39.   if (du > GMP_NUMB_MAX || cu > GMP_NUMB_MAX)
  40.     {
  41.       mp_limb_t  climbs[2], dlimbs[2];
  42.       mpz_t      cz, dz;
  43.       ALLOC(cz) = 2;
  44.       PTR(cz) = climbs;
  45.       ALLOC(dz) = 2;
  46.       PTR(dz) = dlimbs;
  47.       mpz_set_ui (cz, cu);
  48.       mpz_set_ui (dz, du);
  49.       return mpz_congruent_p (a, cz, dz);
  50.     }
  51.   /* NEG_MOD works on limbs, so convert ulong to limb */
  52.   c = cu;
  53.   d = du;
  54.   if (asize < 0)
  55.     {
  56.       asize = -asize;
  57.       NEG_MOD (c, c, d);
  58.     }
  59.   ap = PTR (a);
  60.   if (ABOVE_THRESHOLD (asize, BMOD_1_TO_MOD_1_THRESHOLD))
  61.     {
  62.       r = mpn_mod_1 (ap, asize, d);
  63.       if (c < d)
  64.         return r == c;
  65.       else
  66.         return r == (c % d);
  67.     }
  68.   if ((d & 1) == 0)
  69.     {
  70.       /* Strip low zero bits to get odd d required by modexact.  If
  71.          d==e*2^n then a==c mod d if and only if both a==c mod 2^n
  72.          and a==c mod e.  */
  73.       unsigned  twos;
  74.       if ((ap[0]-c) & LOW_ZEROS_MASK (d))
  75.         return 0;
  76.       count_trailing_zeros (twos, d);
  77.       d >>= twos;
  78.     }
  79.   r = mpn_modexact_1c_odd (ap, asize, d, c);
  80.   return r == 0 || r == d;
  81. }