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

数学计算

开发平台:

Unix_Linux

  1. /* gmp_urandomm_ui -- uniform random number 0 to N-1 for ulong N.
  2. Copyright 2003, 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. /* If n is a power of 2 then the test ret<n is always true and the loop is
  18.    unnecessary, but there's no need to add special code for this.  Just get
  19.    the "bits" calculation correct and let it go through normally.
  20.    If n is 1 then will have bits==0 and _gmp_rand will produce no output and
  21.    we always return 0.  Again there seems no need for a special case, just
  22.    initialize a[0]=0 and let it go through normally.  */
  23. #define MAX_URANDOMM_ITER  80
  24. unsigned long
  25. gmp_urandomm_ui (gmp_randstate_ptr rstate, unsigned long n)
  26. {
  27.   mp_limb_t      a[LIMBS_PER_ULONG];
  28.   unsigned long  ret, bits, leading;
  29.   int            i;
  30.   if (UNLIKELY (n == 0))
  31.     DIVIDE_BY_ZERO;
  32.   /* start with zeros, since if bits==0 then _gmp_rand will store nothing at
  33.      all (bits==0 arises when n==1), or if bits <= GMP_NUMB_BITS then it
  34.      will store only a[0].  */
  35.   a[0] = 0;
  36. #if LIMBS_PER_ULONG > 1
  37.   a[1] = 0;
  38. #endif
  39.   count_leading_zeros (leading, (mp_limb_t) n);
  40.   bits = GMP_LIMB_BITS - leading - (POW2_P(n) != 0);
  41.   for (i = 0; i < MAX_URANDOMM_ITER; i++)
  42.     {
  43.       _gmp_rand (a, rstate, bits);
  44. #if LIMBS_PER_ULONG == 1
  45.       ret = a[0];
  46. #else
  47.       ret = a[0] | (a[1] << GMP_NUMB_BITS);
  48. #endif
  49.       if (LIKELY (ret < n))   /* usually one iteration suffices */
  50.         goto done;
  51.     }
  52.   /* Too many iterations, there must be something degenerate about the
  53.      rstate algorithm.  Return r%n.  */
  54.   ret -= n;
  55.   ASSERT (ret < n);
  56.  done:
  57.   return ret;
  58. }