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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_rrandomb -- Generate a positive random mpz_t of specified bit size, with
  2.    long runs of consecutive ones and zeros in the binary representation.
  3.    Meant for testing of other MP routines.
  4. Copyright 2000, 2001, 2002, 2004 Free Software 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. void
  20. mpz_rrandomb (mpz_ptr x, gmp_randstate_t rstate, mp_bitcnt_t nbits)
  21. {
  22.   mp_size_t nl;
  23.   nl = (nbits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS;
  24.   if (nbits != 0)
  25.     {
  26.       MPZ_REALLOC (x, nl);
  27.       gmp_rrandomb (PTR(x), rstate, nbits);
  28.     }
  29.   SIZ(x) = nl;
  30. }
  31. /* Ask _gmp_rand for 32 bits per call unless that's more than a limb can hold.
  32.    Thus, we get the same random number sequence in the common cases.
  33.    FIXME: We should always generate the same random number sequence!  */
  34. #if GMP_NUMB_BITS < 32
  35. #define BITS_PER_RANDCALL GMP_NUMB_BITS
  36. #else
  37. #define BITS_PER_RANDCALL 32
  38. #endif
  39. static void
  40. gmp_rrandomb (mp_ptr rp, gmp_randstate_t rstate, mp_bitcnt_t nbits)
  41. {
  42.   mp_bitcnt_t bi;
  43.   mp_limb_t ranm; /* buffer for random bits */
  44.   unsigned cap_chunksize, chunksize;
  45.   mp_size_t i;
  46.   /* Set entire result to 111..1  */
  47.   i = (nbits + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS - 1;
  48.   rp[i] = GMP_NUMB_MAX >> (GMP_NUMB_BITS - (nbits % GMP_NUMB_BITS)) % GMP_NUMB_BITS;
  49.   for (i = i - 1; i >= 0; i--)
  50.     rp[i] = GMP_NUMB_MAX;
  51.   _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  52.   cap_chunksize = nbits / (ranm % 4 + 1);
  53.   cap_chunksize += cap_chunksize == 0; /* make it at least 1 */
  54.   bi = nbits;
  55.   for (;;)
  56.     {
  57.       _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  58.       chunksize = 1 + ranm % cap_chunksize;
  59.       bi = (bi < chunksize) ? 0 : bi - chunksize;
  60.       if (bi == 0)
  61. break; /* low chunk is ...1 */
  62.       rp[bi / GMP_NUMB_BITS] ^= CNST_LIMB (1) << bi % GMP_NUMB_BITS;
  63.       _gmp_rand (&ranm, rstate, BITS_PER_RANDCALL);
  64.       chunksize = 1 + ranm % cap_chunksize;
  65.       bi = (bi < chunksize) ? 0 : bi - chunksize;
  66.       mpn_incr_u (rp + bi / GMP_NUMB_BITS, CNST_LIMB (1) << bi % GMP_NUMB_BITS);
  67.       if (bi == 0)
  68. break; /* low chunk is ...0 */
  69.     }
  70. }