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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_random2 -- Generate random numbers with relatively long strings
  2.    of ones and zeroes.  Suitable for border testing.
  3. Copyright 1992, 1993, 1994, 1996, 2000, 2001, 2002, 2004 Free Software
  4. Foundation, Inc.
  5. This file is part of the GNU MP Library.
  6. The GNU MP Library is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or (at your
  9. option) any later version.
  10. The GNU MP Library is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. static void gmp_rrandomb __GMP_PROTO ((mp_ptr, gmp_randstate_t, mp_bitcnt_t));
  19. /* Ask _gmp_rand for 32 bits per call unless that's more than a limb can hold.
  20.    Thus, we get the same random number sequence in the common cases.
  21.    FIXME: We should always generate the same random number sequence!  */
  22. #if GMP_NUMB_BITS < 32
  23. #define BITS_PER_RANDCALL GMP_NUMB_BITS
  24. #else
  25. #define BITS_PER_RANDCALL 32
  26. #endif
  27. void
  28. mpn_random2 (mp_ptr rp, mp_size_t n)
  29. {
  30.   gmp_randstate_ptr rstate = RANDS;
  31.   int bit_pos; /* bit number of least significant bit where
  32.    next bit field to be inserted */
  33.   mp_limb_t ran, ranm; /* buffer for random bits */
  34.   /* FIXME: Is n==0 supposed to be allowed? */
  35.   ASSERT (n >= 0);
  36.   _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  37.   ran = ranm;
  38.   /* Start off at a random bit position in the most significant limb.  */
  39.   bit_pos = ran % GMP_NUMB_BITS;
  40.   gmp_rrandomb (rp, rstate, n * GMP_NUMB_BITS - bit_pos);
  41. }
  42. static void
  43. gmp_rrandomb (mp_ptr rp, gmp_randstate_t rstate, mp_bitcnt_t nbits)
  44. {
  45.   mp_bitcnt_t bi;
  46.   mp_limb_t ranm; /* buffer for random bits */
  47.   unsigned cap_chunksize, chunksize;
  48.   mp_size_t i;
  49.   /* Set entire result to 111..1  */
  50.   i = (nbits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS - 1;
  51.   rp[i] = GMP_NUMB_MAX >> (GMP_NUMB_BITS - (nbits % GMP_NUMB_BITS)) % GMP_NUMB_BITS;
  52.   for (i = i - 1; i >= 0; i--)
  53.     rp[i] = GMP_NUMB_MAX;
  54.   _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  55.   cap_chunksize = nbits / (ranm % 4 + 1);
  56.   cap_chunksize += cap_chunksize == 0; /* make it at least 1 */
  57.   bi = nbits;
  58.   for (;;)
  59.     {
  60.       _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  61.       chunksize = 1 + ranm % cap_chunksize;
  62.       bi = (bi < chunksize) ? 0 : bi - chunksize;
  63.       if (bi == 0)
  64. break; /* low chunk is ...1 */
  65.       rp[bi / GMP_NUMB_BITS] ^= CNST_LIMB (1) << bi % GMP_NUMB_BITS;
  66.       _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  67.       chunksize = 1 + ranm % cap_chunksize;
  68.       bi = (bi < chunksize) ? 0 : bi - chunksize;
  69.       mpn_incr_u (rp + bi / GMP_NUMB_BITS, CNST_LIMB (1) << bi % GMP_NUMB_BITS);
  70.       if (bi == 0)
  71. break; /* low chunk is ...0 */
  72.     }
  73. }