2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
random.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Fri Dec 24 16:39:21 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-02-22 17:23:33 +03:00
|
|
|
/*
|
2002-07-26 10:12:39 +04:00
|
|
|
This is based on trimmed version of MT19937. To get the original version,
|
2007-11-09 01:27:54 +03:00
|
|
|
contact <http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html>.
|
2002-07-26 10:12:39 +04:00
|
|
|
|
|
|
|
The original copyright notice follows.
|
|
|
|
|
|
|
|
A C-program for MT19937, with initialization improved 2002/2/10.
|
|
|
|
Coded by Takuji Nishimura and Makoto Matsumoto.
|
|
|
|
This is a faster version by taking Shawn Cokus's optimization,
|
|
|
|
Matthe Bellew's simplification, Isaku Wada's real version.
|
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
Before using, initialize the state by using init_genrand(mt, seed)
|
|
|
|
or init_by_array(mt, init_key, key_length).
|
2002-07-26 10:12:39 +04:00
|
|
|
|
|
|
|
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
|
2009-02-22 17:23:33 +03:00
|
|
|
All rights reserved.
|
2002-07-26 10:12:39 +04:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
2009-02-22 17:23:33 +03:00
|
|
|
3. The names of its contributors may not be used to endorse or promote
|
|
|
|
products derived from this software without specific prior written
|
2002-07-26 10:12:39 +04:00
|
|
|
permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
|
|
Any feedback is very welcome.
|
|
|
|
http://www.math.keio.ac.jp/matumoto/emt.html
|
|
|
|
email: matumoto@math.keio.ac.jp
|
|
|
|
*/
|
|
|
|
|
2010-03-29 04:21:20 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
|
2009-07-10 09:44:08 +04:00
|
|
|
#include <limits.h>
|
2010-03-29 04:21:20 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
#include <math.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
# if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0400
|
|
|
|
# undef _WIN32_WINNT
|
|
|
|
# define _WIN32_WINNT 0x400
|
|
|
|
# undef __WINCRYPT_H__
|
|
|
|
# endif
|
|
|
|
#include <wincrypt.h>
|
|
|
|
#endif
|
|
|
|
|
2009-07-10 09:44:08 +04:00
|
|
|
typedef int int_must_be_32bit_at_least[sizeof(int) * CHAR_BIT < 32 ? -1 : 1];
|
|
|
|
|
2009-02-22 17:23:33 +03:00
|
|
|
/* Period parameters */
|
2002-07-26 10:12:39 +04:00
|
|
|
#define N 624
|
|
|
|
#define M 397
|
2009-07-10 09:44:08 +04:00
|
|
|
#define MATRIX_A 0x9908b0dfU /* constant vector a */
|
|
|
|
#define UMASK 0x80000000U /* most significant w-r bits */
|
|
|
|
#define LMASK 0x7fffffffU /* least significant r bits */
|
2002-07-26 10:12:39 +04:00
|
|
|
#define MIXBITS(u,v) ( ((u) & UMASK) | ((v) & LMASK) )
|
2009-07-10 09:44:08 +04:00
|
|
|
#define TWIST(u,v) ((MIXBITS(u,v) >> 1) ^ ((v)&1U ? MATRIX_A : 0U))
|
|
|
|
|
|
|
|
enum {MT_MAX_STATE = N};
|
2002-07-26 10:12:39 +04:00
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
struct MT {
|
2009-07-10 09:44:08 +04:00
|
|
|
/* assume int is enough to store 32bits */
|
|
|
|
unsigned int state[N]; /* the array for the state vector */
|
|
|
|
unsigned int *next;
|
2008-08-17 06:43:20 +04:00
|
|
|
int left;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define genrand_initialized(mt) ((mt)->next != 0)
|
|
|
|
#define uninit_genrand(mt) ((mt)->next = 0)
|
2002-07-26 10:12:39 +04:00
|
|
|
|
|
|
|
/* initializes state[N] with a seed */
|
|
|
|
static void
|
2009-07-10 09:44:08 +04:00
|
|
|
init_genrand(struct MT *mt, unsigned int s)
|
2002-07-26 10:12:39 +04:00
|
|
|
{
|
|
|
|
int j;
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[0] = s & 0xffffffffU;
|
2002-07-26 10:12:39 +04:00
|
|
|
for (j=1; j<N; j++) {
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[j] = (1812433253U * (mt->state[j-1] ^ (mt->state[j-1] >> 30)) + j);
|
2002-07-26 10:12:39 +04:00
|
|
|
/* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
|
|
|
|
/* In the previous versions, MSBs of the seed affect */
|
2009-07-16 10:00:35 +04:00
|
|
|
/* only MSBs of the array state[]. */
|
2002-07-26 10:12:39 +04:00
|
|
|
/* 2002/01/09 modified by Makoto Matsumoto */
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[j] &= 0xffffffff; /* for >32 bit machines */
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
2008-08-17 06:43:20 +04:00
|
|
|
mt->left = 1;
|
2009-07-30 16:55:04 +04:00
|
|
|
mt->next = mt->state + N;
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
/* initialize by an array with array-length */
|
|
|
|
/* init_key is the array for initializing keys */
|
|
|
|
/* key_length is its length */
|
|
|
|
/* slight change for C++, 2004/2/26 */
|
|
|
|
static void
|
2009-07-10 09:44:08 +04:00
|
|
|
init_by_array(struct MT *mt, unsigned int init_key[], int key_length)
|
2005-01-04 20:38:39 +03:00
|
|
|
{
|
|
|
|
int i, j, k;
|
2009-07-10 09:44:08 +04:00
|
|
|
init_genrand(mt, 19650218U);
|
2005-01-04 20:38:39 +03:00
|
|
|
i=1; j=0;
|
|
|
|
k = (N>key_length ? N : key_length);
|
|
|
|
for (; k; k--) {
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[i] = (mt->state[i] ^ ((mt->state[i-1] ^ (mt->state[i-1] >> 30)) * 1664525U))
|
2005-01-04 20:38:39 +03:00
|
|
|
+ init_key[j] + j; /* non linear */
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[i] &= 0xffffffffU; /* for WORDSIZE > 32 machines */
|
2005-01-04 20:38:39 +03:00
|
|
|
i++; j++;
|
2008-08-17 06:43:20 +04:00
|
|
|
if (i>=N) { mt->state[0] = mt->state[N-1]; i=1; }
|
2005-01-04 20:38:39 +03:00
|
|
|
if (j>=key_length) j=0;
|
|
|
|
}
|
|
|
|
for (k=N-1; k; k--) {
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[i] = (mt->state[i] ^ ((mt->state[i-1] ^ (mt->state[i-1] >> 30)) * 1566083941U))
|
2005-01-04 20:38:39 +03:00
|
|
|
- i; /* non linear */
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[i] &= 0xffffffffU; /* for WORDSIZE > 32 machines */
|
2005-01-04 20:38:39 +03:00
|
|
|
i++;
|
2008-08-17 06:43:20 +04:00
|
|
|
if (i>=N) { mt->state[0] = mt->state[N-1]; i=1; }
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
|
|
|
|
2009-07-10 09:44:08 +04:00
|
|
|
mt->state[0] = 0x80000000U; /* MSB is 1; assuring non-zero initial array */
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
static void
|
2008-08-17 06:43:20 +04:00
|
|
|
next_state(struct MT *mt)
|
2002-07-26 10:12:39 +04:00
|
|
|
{
|
2009-07-10 09:44:08 +04:00
|
|
|
unsigned int *p = mt->state;
|
2002-07-26 10:12:39 +04:00
|
|
|
int j;
|
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
mt->left = N;
|
|
|
|
mt->next = mt->state;
|
2002-07-26 10:12:39 +04:00
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
for (j=N-M+1; --j; p++)
|
2002-07-26 10:12:39 +04:00
|
|
|
*p = p[M] ^ TWIST(p[0], p[1]);
|
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
for (j=M; --j; p++)
|
2002-07-26 10:12:39 +04:00
|
|
|
*p = p[M-N] ^ TWIST(p[0], p[1]);
|
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
*p = p[M-N] ^ TWIST(p[0], mt->state[0]);
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
/* generates a random number on [0,0xffffffff]-interval */
|
2009-07-10 09:44:08 +04:00
|
|
|
static unsigned int
|
2008-08-17 06:43:20 +04:00
|
|
|
genrand_int32(struct MT *mt)
|
2002-07-26 10:12:39 +04:00
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2009-07-10 09:44:08 +04:00
|
|
|
unsigned int y;
|
2002-07-26 10:12:39 +04:00
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
if (--mt->left <= 0) next_state(mt);
|
|
|
|
y = *mt->next++;
|
2002-07-26 10:12:39 +04:00
|
|
|
|
|
|
|
/* Tempering */
|
|
|
|
y ^= (y >> 11);
|
2009-07-10 09:44:08 +04:00
|
|
|
y ^= (y << 7) & 0x9d2c5680;
|
|
|
|
y ^= (y << 15) & 0xefc60000;
|
2002-07-26 10:12:39 +04:00
|
|
|
y ^= (y >> 18);
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
return y;
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
/* generates a random number on [0,1) with 53-bit resolution*/
|
2007-12-24 11:19:28 +03:00
|
|
|
static double
|
2008-08-17 06:43:20 +04:00
|
|
|
genrand_real(struct MT *mt)
|
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2009-07-10 09:44:08 +04:00
|
|
|
unsigned int a = genrand_int32(mt)>>5, b = genrand_int32(mt)>>6;
|
2008-08-17 06:43:20 +04:00
|
|
|
return(a*67108864.0+b)*(1.0/9007199254740992.0);
|
|
|
|
}
|
2009-08-26 14:20:30 +04:00
|
|
|
|
|
|
|
/* generates a random number on [0,1] with 53-bit resolution*/
|
|
|
|
static double int_pair_to_real_inclusive(unsigned int a, unsigned int b);
|
|
|
|
static double
|
|
|
|
genrand_real2(struct MT *mt)
|
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2009-08-26 14:20:30 +04:00
|
|
|
unsigned int a = genrand_int32(mt), b = genrand_int32(mt);
|
|
|
|
return int_pair_to_real_inclusive(a, b);
|
|
|
|
}
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
/* These real versions are due to Isaku Wada, 2002/01/09 added */
|
|
|
|
|
2002-07-26 10:56:30 +04:00
|
|
|
#undef N
|
|
|
|
#undef M
|
|
|
|
|
2002-07-26 10:12:39 +04:00
|
|
|
/* These real versions are due to Isaku Wada, 2002/01/09 added */
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
typedef struct {
|
|
|
|
VALUE seed;
|
|
|
|
struct MT mt;
|
|
|
|
} rb_random_t;
|
2008-08-17 06:43:20 +04:00
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
#define DEFAULT_SEED_CNT 4
|
2008-08-17 06:43:20 +04:00
|
|
|
|
2010-03-15 12:33:39 +03:00
|
|
|
static rb_random_t default_rand;
|
2008-08-17 06:43:20 +04:00
|
|
|
|
2010-03-15 06:26:29 +03:00
|
|
|
static VALUE rand_init(struct MT *mt, VALUE vseed);
|
|
|
|
static VALUE random_seed(void);
|
|
|
|
|
2010-03-15 08:06:11 +03:00
|
|
|
static struct MT *
|
|
|
|
default_mt(void)
|
2010-03-15 06:26:29 +03:00
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
rb_random_t *r = &default_rand;
|
2010-03-15 08:06:11 +03:00
|
|
|
struct MT *mt = &r->mt;
|
|
|
|
if (!genrand_initialized(mt)) {
|
|
|
|
r->seed = rand_init(mt, random_seed());
|
|
|
|
}
|
|
|
|
return mt;
|
2010-03-15 06:26:29 +03:00
|
|
|
}
|
|
|
|
|
2009-07-18 04:16:25 +04:00
|
|
|
unsigned int
|
2007-12-24 11:19:28 +03:00
|
|
|
rb_genrand_int32(void)
|
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
struct MT *mt = default_mt();
|
2010-03-15 06:26:29 +03:00
|
|
|
return genrand_int32(mt);
|
2007-12-24 11:19:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
rb_genrand_real(void)
|
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
struct MT *mt = default_mt();
|
2010-03-15 06:26:29 +03:00
|
|
|
return genrand_real(mt);
|
2007-12-24 11:19:28 +03:00
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
#define BDIGITS(x) (RBIGNUM_DIGITS(x))
|
|
|
|
#define BITSPERDIG (SIZEOF_BDIGITS*CHAR_BIT)
|
|
|
|
#define BIGRAD ((BDIGIT_DBL)1 << BITSPERDIG)
|
2009-07-17 10:21:14 +04:00
|
|
|
#define DIGSPERINT (SIZEOF_INT/SIZEOF_BDIGITS)
|
2009-07-16 10:00:35 +04:00
|
|
|
#define BIGUP(x) ((BDIGIT_DBL)(x) << BITSPERDIG)
|
|
|
|
#define BIGDN(x) RSHIFT(x,BITSPERDIG)
|
|
|
|
#define BIGLO(x) ((BDIGIT)((x) & (BIGRAD-1)))
|
|
|
|
#define BDIGMAX ((BDIGIT)-1)
|
|
|
|
|
2009-07-11 21:24:46 +04:00
|
|
|
#define roomof(n, m) (int)(((n)+(m)-1) / (m))
|
|
|
|
#define numberof(array) (int)(sizeof(array) / sizeof((array)[0]))
|
2009-07-10 09:44:08 +04:00
|
|
|
#define SIZEOF_INT32 (31/CHAR_BIT + 1)
|
|
|
|
|
2009-08-26 14:20:30 +04:00
|
|
|
static double
|
|
|
|
int_pair_to_real_inclusive(unsigned int a, unsigned int b)
|
|
|
|
{
|
|
|
|
VALUE x = rb_big_new(roomof(64, BITSPERDIG), 1);
|
|
|
|
VALUE m = rb_big_new(roomof(53, BITSPERDIG), 1);
|
|
|
|
BDIGIT *xd = BDIGITS(x);
|
|
|
|
int i = 0;
|
|
|
|
double r;
|
|
|
|
|
|
|
|
xd[i++] = (BDIGIT)b;
|
|
|
|
#if BITSPERDIG < 32
|
|
|
|
xd[i++] = (BDIGIT)(b >> BITSPERDIG);
|
|
|
|
#endif
|
|
|
|
xd[i++] = (BDIGIT)a;
|
|
|
|
#if BITSPERDIG < 32
|
|
|
|
xd[i++] = (BDIGIT)(a >> BITSPERDIG);
|
|
|
|
#endif
|
|
|
|
xd = BDIGITS(m);
|
|
|
|
#if BITSPERDIG < 53
|
|
|
|
MEMZERO(xd, BDIGIT, roomof(53, BITSPERDIG) - 1);
|
|
|
|
#endif
|
|
|
|
xd[53 / BITSPERDIG] = 1 << 53 % BITSPERDIG;
|
|
|
|
xd[0] |= 1;
|
|
|
|
x = rb_big_mul(x, m);
|
|
|
|
if (FIXNUM_P(x)) {
|
|
|
|
#if CHAR_BIT * SIZEOF_LONG > 64
|
|
|
|
r = (double)(FIX2ULONG(x) >> 64);
|
|
|
|
#else
|
|
|
|
return 0.0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#if 64 % BITSPERDIG == 0
|
|
|
|
long len = RBIGNUM_LEN(x);
|
|
|
|
xd = BDIGITS(x);
|
|
|
|
MEMMOVE(xd, xd + 64 / BITSPERDIG, BDIGIT, len - 64 / BITSPERDIG);
|
|
|
|
MEMZERO(xd + len - 64 / BITSPERDIG, BDIGIT, 64 / BITSPERDIG);
|
|
|
|
r = rb_big2dbl(x);
|
|
|
|
#else
|
|
|
|
x = rb_big_rshift(x, INT2FIX(64));
|
|
|
|
if (FIXNUM_P(x)) {
|
|
|
|
r = (double)FIX2ULONG(x);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
r = rb_big2dbl(x);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return ldexp(r, -53);
|
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
VALUE rb_cRandom;
|
|
|
|
#define id_minus '-'
|
|
|
|
#define id_plus '+'
|
|
|
|
|
|
|
|
/* :nodoc: */
|
|
|
|
static void
|
|
|
|
random_mark(void *ptr)
|
|
|
|
{
|
|
|
|
rb_gc_mark(((rb_random_t *)ptr)->seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define random_free RUBY_TYPED_DEFAULT_FREE
|
|
|
|
|
|
|
|
static size_t
|
2009-09-09 06:11:35 +04:00
|
|
|
random_memsize(const void *ptr)
|
2009-07-16 10:00:35 +04:00
|
|
|
{
|
|
|
|
return ptr ? sizeof(rb_random_t) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const rb_data_type_t random_data_type = {
|
|
|
|
"random",
|
|
|
|
random_mark,
|
|
|
|
random_free,
|
|
|
|
random_memsize,
|
|
|
|
};
|
|
|
|
|
|
|
|
static rb_random_t *
|
|
|
|
get_rnd(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *ptr;
|
|
|
|
TypedData_Get_Struct(obj, rb_random_t, &random_data_type, ptr);
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
|
|
|
random_alloc(VALUE klass)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd;
|
2010-03-15 12:33:39 +03:00
|
|
|
VALUE obj = TypedData_Make_Struct(klass, rb_random_t, &random_data_type, rnd);
|
2009-07-16 10:00:35 +04:00
|
|
|
rnd->seed = INT2FIX(0);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
static VALUE
|
2008-08-17 06:43:20 +04:00
|
|
|
rand_init(struct MT *mt, VALUE vseed)
|
2000-01-08 08:00:25 +03:00
|
|
|
{
|
2005-01-04 20:38:39 +03:00
|
|
|
volatile VALUE seed;
|
2009-07-10 09:44:08 +04:00
|
|
|
long blen = 0;
|
2010-04-08 02:22:36 +04:00
|
|
|
long fixnum_seed;
|
2009-07-11 21:24:46 +04:00
|
|
|
int i, j, len;
|
|
|
|
unsigned int buf0[SIZEOF_LONG / SIZEOF_INT32 * 4], *buf = buf0;
|
2000-01-08 08:00:25 +03:00
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
seed = rb_to_int(vseed);
|
|
|
|
switch (TYPE(seed)) {
|
|
|
|
case T_FIXNUM:
|
2009-07-11 21:24:46 +04:00
|
|
|
len = 1;
|
2010-04-08 02:22:36 +04:00
|
|
|
fixnum_seed = FIX2LONG(seed);
|
2010-04-12 19:16:45 +04:00
|
|
|
if (fixnum_seed < 0)
|
|
|
|
fixnum_seed = -fixnum_seed;
|
2010-04-08 02:22:36 +04:00
|
|
|
buf[0] = (unsigned int)(fixnum_seed & 0xffffffff);
|
2009-07-11 21:24:46 +04:00
|
|
|
#if SIZEOF_LONG > SIZEOF_INT32
|
2010-04-08 02:22:36 +04:00
|
|
|
if ((long)(int)fixnum_seed != fixnum_seed) {
|
|
|
|
if ((buf[1] = (unsigned int)(fixnum_seed >> 32)) != 0) ++len;
|
|
|
|
}
|
2009-07-11 21:24:46 +04:00
|
|
|
#endif
|
2009-07-10 09:44:08 +04:00
|
|
|
break;
|
2005-01-04 20:38:39 +03:00
|
|
|
case T_BIGNUM:
|
2009-07-10 09:44:08 +04:00
|
|
|
blen = RBIGNUM_LEN(seed);
|
2009-07-11 21:24:46 +04:00
|
|
|
if (blen == 0) {
|
|
|
|
len = 1;
|
|
|
|
}
|
|
|
|
else {
|
2009-07-21 18:51:17 +04:00
|
|
|
if (blen > MT_MAX_STATE * SIZEOF_INT32 / SIZEOF_BDIGITS)
|
|
|
|
blen = (len = MT_MAX_STATE) * SIZEOF_INT32 / SIZEOF_BDIGITS;
|
2009-07-11 21:24:46 +04:00
|
|
|
len = roomof((int)blen * SIZEOF_BDIGITS, SIZEOF_INT32);
|
|
|
|
}
|
|
|
|
/* allocate ints for init_by_array */
|
|
|
|
if (len > numberof(buf0)) buf = ALLOC_N(unsigned int, len);
|
|
|
|
memset(buf, 0, len * sizeof(*buf));
|
|
|
|
len = 0;
|
|
|
|
for (i = (int)(blen-1); 0 <= i; i--) {
|
|
|
|
j = i * SIZEOF_BDIGITS / SIZEOF_INT32;
|
|
|
|
#if SIZEOF_BDIGITS < SIZEOF_INT32
|
2009-08-25 13:21:39 +04:00
|
|
|
buf[j] <<= BITSPERDIG;
|
2009-07-11 21:24:46 +04:00
|
|
|
#endif
|
|
|
|
buf[j] |= RBIGNUM_DIGITS(seed)[i];
|
|
|
|
if (!len && buf[j]) len = j;
|
|
|
|
}
|
|
|
|
++len;
|
2009-07-10 09:44:08 +04:00
|
|
|
break;
|
2005-01-04 20:38:39 +03:00
|
|
|
default:
|
2009-07-10 09:44:08 +04:00
|
|
|
rb_raise(rb_eTypeError, "failed to convert %s into Integer",
|
|
|
|
rb_obj_classname(vseed));
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
|
|
|
if (len <= 1) {
|
2008-08-17 06:43:20 +04:00
|
|
|
init_genrand(mt, buf[0]);
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (buf[len-1] == 1) /* remove leading-zero-guard */
|
|
|
|
len--;
|
2008-08-17 06:43:20 +04:00
|
|
|
init_by_array(mt, buf, len);
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
2009-07-11 21:24:46 +04:00
|
|
|
if (buf != buf0) xfree(buf);
|
2008-08-17 06:43:20 +04:00
|
|
|
return seed;
|
2000-01-08 08:00:25 +03:00
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
/*
|
|
|
|
* call-seq: Random.new([seed]) -> prng
|
|
|
|
*
|
|
|
|
* Creates new Mersenne Twister based pseudorandom number generator with
|
|
|
|
* seed. When the argument seed is omitted, the generator is initialized
|
2010-04-03 18:57:20 +04:00
|
|
|
* with Random.new_seed.
|
2009-07-16 10:00:35 +04:00
|
|
|
*
|
|
|
|
* The argument seed is used to ensure repeatable sequences of random numbers
|
|
|
|
* between different runs of the program.
|
|
|
|
*
|
|
|
|
* prng = Random.new(1234)
|
|
|
|
* [ prng.rand, prng.rand ] #=> [0.191519450378892, 0.622108771039832]
|
|
|
|
* [ prng.integer(10), prng.integer(1000) ] #=> [4, 664]
|
|
|
|
* prng = Random.new(1234)
|
|
|
|
* [ prng.rand, prng.rand ] #=> [0.191519450378892, 0.622108771039832]
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
random_init(int argc, VALUE *argv, VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE vseed;
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
vseed = random_seed();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_scan_args(argc, argv, "01", &vseed);
|
|
|
|
}
|
|
|
|
rnd->seed = rand_init(&rnd->mt, vseed);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2009-07-10 09:44:08 +04:00
|
|
|
#define DEFAULT_SEED_LEN (DEFAULT_SEED_CNT * sizeof(int))
|
2008-06-20 06:46:17 +04:00
|
|
|
|
2009-07-17 08:58:38 +04:00
|
|
|
#if defined(S_ISCHR) && !defined(DOSISH)
|
|
|
|
# define USE_DEV_URANDOM 1
|
|
|
|
#else
|
|
|
|
# define USE_DEV_URANDOM 0
|
|
|
|
#endif
|
|
|
|
|
2008-06-20 06:46:17 +04:00
|
|
|
static void
|
2009-07-10 09:44:08 +04:00
|
|
|
fill_random_seed(unsigned int seed[DEFAULT_SEED_CNT])
|
2002-07-26 10:12:39 +04:00
|
|
|
{
|
|
|
|
static int n = 0;
|
|
|
|
struct timeval tv;
|
2009-07-17 08:58:38 +04:00
|
|
|
#if USE_DEV_URANDOM
|
2005-01-03 05:41:03 +03:00
|
|
|
int fd;
|
2005-01-03 08:13:18 +03:00
|
|
|
struct stat statbuf;
|
2009-07-18 04:07:07 +04:00
|
|
|
#elif defined(_WIN32)
|
2009-07-18 06:40:31 +04:00
|
|
|
HCRYPTPROV prov;
|
2009-03-11 23:14:51 +03:00
|
|
|
#endif
|
2005-01-05 14:31:41 +03:00
|
|
|
|
2008-08-17 06:43:20 +04:00
|
|
|
memset(seed, 0, DEFAULT_SEED_LEN);
|
2005-01-03 05:41:03 +03:00
|
|
|
|
2009-07-17 08:58:38 +04:00
|
|
|
#if USE_DEV_URANDOM
|
2005-01-06 11:24:04 +03:00
|
|
|
if ((fd = open("/dev/urandom", O_RDONLY
|
|
|
|
#ifdef O_NONBLOCK
|
|
|
|
|O_NONBLOCK
|
|
|
|
#endif
|
2005-01-03 08:13:18 +03:00
|
|
|
#ifdef O_NOCTTY
|
|
|
|
|O_NOCTTY
|
|
|
|
#endif
|
|
|
|
)) >= 0) {
|
|
|
|
if (fstat(fd, &statbuf) == 0 && S_ISCHR(statbuf.st_mode)) {
|
2010-07-13 16:28:37 +04:00
|
|
|
if (read(fd, seed, DEFAULT_SEED_LEN) < DEFAULT_SEED_LEN) {
|
|
|
|
/* abandon */;
|
|
|
|
}
|
2005-01-03 08:13:18 +03:00
|
|
|
}
|
2005-01-03 05:41:03 +03:00
|
|
|
close(fd);
|
|
|
|
}
|
2009-07-18 04:07:07 +04:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
if (CryptAcquireContext(&prov, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) {
|
2009-07-18 04:10:46 +04:00
|
|
|
CryptGenRandom(prov, DEFAULT_SEED_LEN, (void *)seed);
|
2009-07-18 04:07:07 +04:00
|
|
|
CryptReleaseContext(prov, 0);
|
|
|
|
}
|
2005-01-03 08:13:18 +03:00
|
|
|
#endif
|
2005-01-03 05:41:03 +03:00
|
|
|
|
2005-01-05 14:31:41 +03:00
|
|
|
gettimeofday(&tv, 0);
|
|
|
|
seed[0] ^= tv.tv_usec;
|
2009-07-10 09:44:08 +04:00
|
|
|
seed[1] ^= (unsigned int)tv.tv_sec;
|
|
|
|
#if SIZEOF_TIME_T > SIZEOF_INT
|
2009-07-16 13:43:01 +04:00
|
|
|
seed[0] ^= (unsigned int)((time_t)tv.tv_sec >> SIZEOF_INT * CHAR_BIT);
|
2009-07-10 09:44:08 +04:00
|
|
|
#endif
|
2005-01-05 14:31:41 +03:00
|
|
|
seed[2] ^= getpid() ^ (n++ << 16);
|
2009-07-10 09:44:08 +04:00
|
|
|
seed[3] ^= (unsigned int)(VALUE)&seed;
|
|
|
|
#if SIZEOF_VOIDP > SIZEOF_INT
|
|
|
|
seed[2] ^= (unsigned int)((VALUE)&seed >> SIZEOF_INT * CHAR_BIT);
|
|
|
|
#endif
|
2008-06-20 06:46:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2008-08-17 06:43:20 +04:00
|
|
|
make_seed_value(const void *ptr)
|
2008-06-20 06:46:17 +04:00
|
|
|
{
|
2010-04-13 10:00:49 +04:00
|
|
|
const long len = DEFAULT_SEED_LEN/SIZEOF_BDIGITS;
|
2008-06-20 06:46:17 +04:00
|
|
|
BDIGIT *digits;
|
|
|
|
NEWOBJ(big, struct RBignum);
|
|
|
|
OBJSETUP(big, rb_cBignum, T_BIGNUM);
|
|
|
|
|
|
|
|
RBIGNUM_SET_SIGN(big, 1);
|
2010-04-13 10:00:49 +04:00
|
|
|
rb_big_resize((VALUE)big, len + 1);
|
2008-06-20 06:46:17 +04:00
|
|
|
digits = RBIGNUM_DIGITS(big);
|
|
|
|
|
2009-07-10 09:44:08 +04:00
|
|
|
MEMCPY(digits, ptr, char, DEFAULT_SEED_LEN);
|
2005-01-05 14:31:41 +03:00
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
/* set leading-zero-guard if need. */
|
2010-04-13 10:00:49 +04:00
|
|
|
digits[len] =
|
|
|
|
#if SIZEOF_INT32 / SIZEOF_BDIGITS > 1
|
|
|
|
digits[len-2] <= 1 && digits[len-1] == 0
|
|
|
|
#else
|
|
|
|
digits[len-1] <= 1
|
|
|
|
#endif
|
|
|
|
? 1 : 0;
|
2005-01-04 20:38:39 +03:00
|
|
|
|
|
|
|
return rb_big_norm((VALUE)big);
|
2002-07-26 10:12:39 +04:00
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
/*
|
2010-03-03 18:14:21 +03:00
|
|
|
* call-seq: Random.new_seed -> integer
|
2009-07-16 10:00:35 +04:00
|
|
|
*
|
|
|
|
* Returns arbitrary value for seed.
|
|
|
|
*/
|
2008-06-20 06:46:17 +04:00
|
|
|
static VALUE
|
|
|
|
random_seed(void)
|
|
|
|
{
|
2009-07-10 09:44:08 +04:00
|
|
|
unsigned int buf[DEFAULT_SEED_CNT];
|
2008-06-20 06:46:17 +04:00
|
|
|
fill_random_seed(buf);
|
|
|
|
return make_seed_value(buf);
|
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
/*
|
|
|
|
* call-seq: prng.seed -> integer
|
|
|
|
*
|
|
|
|
* Returns the seed of the generator.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
random_get_seed(VALUE obj)
|
|
|
|
{
|
|
|
|
return get_rnd(obj)->seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
|
|
|
random_copy(VALUE obj, VALUE orig)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd1 = get_rnd(obj);
|
|
|
|
rb_random_t *rnd2 = get_rnd(orig);
|
|
|
|
struct MT *mt = &rnd1->mt;
|
|
|
|
|
|
|
|
*rnd1 = *rnd2;
|
|
|
|
mt->next = mt->state + numberof(mt->state) - mt->left + 1;
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
mt_state(const struct MT *mt)
|
|
|
|
{
|
|
|
|
VALUE bigo = rb_big_new(sizeof(mt->state) / sizeof(BDIGIT), 1);
|
|
|
|
BDIGIT *d = RBIGNUM_DIGITS(bigo);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < numberof(mt->state); ++i) {
|
|
|
|
unsigned int x = mt->state[i];
|
|
|
|
#if SIZEOF_BDIGITS < SIZEOF_INT32
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < SIZEOF_INT32 / SIZEOF_BDIGITS; ++j) {
|
|
|
|
*d++ = BIGLO(x);
|
|
|
|
x = BIGDN(x);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
*d++ = (BDIGIT)x;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return rb_big_norm(bigo);
|
|
|
|
}
|
|
|
|
|
2009-07-23 03:52:20 +04:00
|
|
|
/* :nodoc: */
|
2009-07-16 10:00:35 +04:00
|
|
|
static VALUE
|
|
|
|
random_state(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
return mt_state(&rnd->mt);
|
|
|
|
}
|
|
|
|
|
2009-07-23 03:52:20 +04:00
|
|
|
/* :nodoc: */
|
2009-07-16 10:00:35 +04:00
|
|
|
static VALUE
|
|
|
|
random_s_state(VALUE klass)
|
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
return mt_state(&default_rand.mt);
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
|
|
|
|
2009-07-23 03:52:20 +04:00
|
|
|
/* :nodoc: */
|
2009-07-16 10:00:35 +04:00
|
|
|
static VALUE
|
|
|
|
random_left(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
return INT2FIX(rnd->mt.left);
|
|
|
|
}
|
|
|
|
|
2009-07-23 03:52:20 +04:00
|
|
|
/* :nodoc: */
|
2009-07-16 10:00:35 +04:00
|
|
|
static VALUE
|
|
|
|
random_s_left(VALUE klass)
|
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
return INT2FIX(default_rand.mt.left);
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
|
|
|
random_dump(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
VALUE dump = rb_ary_new2(3);
|
|
|
|
|
|
|
|
rb_ary_push(dump, mt_state(&rnd->mt));
|
|
|
|
rb_ary_push(dump, INT2FIX(rnd->mt.left));
|
|
|
|
rb_ary_push(dump, rnd->seed);
|
|
|
|
|
|
|
|
return dump;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
|
|
|
random_load(VALUE obj, VALUE dump)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
struct MT *mt = &rnd->mt;
|
|
|
|
VALUE state, left = INT2FIX(1), seed = INT2FIX(0);
|
|
|
|
VALUE *ary;
|
|
|
|
unsigned long x;
|
|
|
|
|
|
|
|
Check_Type(dump, T_ARRAY);
|
|
|
|
ary = RARRAY_PTR(dump);
|
|
|
|
switch (RARRAY_LEN(dump)) {
|
|
|
|
case 3:
|
|
|
|
seed = ary[2];
|
|
|
|
case 2:
|
|
|
|
left = ary[1];
|
|
|
|
case 1:
|
|
|
|
state = ary[0];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rb_raise(rb_eArgError, "wrong dump data");
|
|
|
|
}
|
|
|
|
memset(mt->state, 0, sizeof(mt->state));
|
|
|
|
if (FIXNUM_P(state)) {
|
|
|
|
x = FIX2ULONG(state);
|
|
|
|
mt->state[0] = (unsigned int)x;
|
|
|
|
#if SIZEOF_LONG / SIZEOF_INT >= 2
|
2009-08-25 13:21:39 +04:00
|
|
|
mt->state[1] = (unsigned int)(x >> BITSPERDIG);
|
2009-07-16 10:00:35 +04:00
|
|
|
#endif
|
|
|
|
#if SIZEOF_LONG / SIZEOF_INT >= 3
|
2009-08-25 13:21:39 +04:00
|
|
|
mt->state[2] = (unsigned int)(x >> 2 * BITSPERDIG);
|
2009-07-16 10:00:35 +04:00
|
|
|
#endif
|
|
|
|
#if SIZEOF_LONG / SIZEOF_INT >= 4
|
2009-08-25 13:21:39 +04:00
|
|
|
mt->state[3] = (unsigned int)(x >> 3 * BITSPERDIG);
|
2009-07-16 10:00:35 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BDIGIT *d;
|
|
|
|
long len;
|
|
|
|
Check_Type(state, T_BIGNUM);
|
|
|
|
len = RBIGNUM_LEN(state);
|
|
|
|
if (len > roomof(sizeof(mt->state), SIZEOF_BDIGITS)) {
|
|
|
|
len = roomof(sizeof(mt->state), SIZEOF_BDIGITS);
|
|
|
|
}
|
|
|
|
#if SIZEOF_BDIGITS < SIZEOF_INT
|
|
|
|
else if (len % DIGSPERINT) {
|
|
|
|
d = RBIGNUM_DIGITS(state) + len;
|
|
|
|
# if DIGSPERINT == 2
|
|
|
|
--len;
|
|
|
|
x = *--d;
|
|
|
|
# else
|
|
|
|
x = 0;
|
|
|
|
do {
|
2009-08-25 13:21:39 +04:00
|
|
|
x = (x << BITSPERDIG) | *--d;
|
2009-07-16 10:00:35 +04:00
|
|
|
} while (--len % DIGSPERINT);
|
|
|
|
# endif
|
|
|
|
mt->state[len / DIGSPERINT] = (unsigned int)x;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (len > 0) {
|
|
|
|
d = BDIGITS(state) + len;
|
|
|
|
do {
|
|
|
|
--len;
|
|
|
|
x = *--d;
|
|
|
|
# if DIGSPERINT == 2
|
|
|
|
--len;
|
2009-08-25 13:21:39 +04:00
|
|
|
x = (x << BITSPERDIG) | *--d;
|
2009-07-16 10:00:35 +04:00
|
|
|
# elif SIZEOF_BDIGITS < SIZEOF_INT
|
|
|
|
do {
|
2009-08-25 13:21:39 +04:00
|
|
|
x = (x << BITSPERDIG) | *--d;
|
2009-07-16 10:00:35 +04:00
|
|
|
} while (--len % DIGSPERINT);
|
2009-07-17 10:21:14 +04:00
|
|
|
# endif
|
2009-07-16 10:00:35 +04:00
|
|
|
mt->state[len / DIGSPERINT] = (unsigned int)x;
|
|
|
|
} while (len > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x = NUM2ULONG(left);
|
|
|
|
if (x > numberof(mt->state)) {
|
|
|
|
rb_raise(rb_eArgError, "wrong value");
|
|
|
|
}
|
|
|
|
mt->left = (unsigned int)x;
|
|
|
|
mt->next = mt->state + numberof(mt->state) - x + 1;
|
|
|
|
rnd->seed = rb_to_int(seed);
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2003-12-28 23:47:56 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* srand(number=0) -> old_seed
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-28 23:47:56 +03:00
|
|
|
* Seeds the pseudorandom number generator to the value of
|
2009-01-05 02:00:39 +03:00
|
|
|
* <i>number</i>. If <i>number</i> is omitted
|
2003-12-28 23:47:56 +03:00
|
|
|
* or zero, seeds the generator using a combination of the time, the
|
|
|
|
* process id, and a sequence number. (This is also the behavior if
|
|
|
|
* <code>Kernel::rand</code> is called without previously calling
|
|
|
|
* <code>srand</code>, but without the sequence.) By setting the seed
|
|
|
|
* to a known value, scripts can be made deterministic during testing.
|
|
|
|
* The previous seed value is returned. Also see <code>Kernel::rand</code>.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_srand(int argc, VALUE *argv, VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-01-04 20:38:39 +03:00
|
|
|
VALUE seed, old;
|
2010-03-15 12:33:39 +03:00
|
|
|
rb_random_t *r = &default_rand;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
rb_secure(4);
|
2008-03-05 08:22:17 +03:00
|
|
|
if (argc == 0) {
|
2002-07-26 10:12:39 +04:00
|
|
|
seed = random_seed();
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-03-05 08:22:17 +03:00
|
|
|
else {
|
|
|
|
rb_scan_args(argc, argv, "01", &seed);
|
|
|
|
}
|
2010-03-15 12:33:39 +03:00
|
|
|
old = r->seed;
|
|
|
|
r->seed = rand_init(&r->mt, seed);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-01-04 20:38:39 +03:00
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
2009-02-22 17:23:33 +03:00
|
|
|
static unsigned long
|
2005-01-04 20:38:39 +03:00
|
|
|
make_mask(unsigned long x)
|
|
|
|
{
|
|
|
|
x = x | x >> 1;
|
|
|
|
x = x | x >> 2;
|
|
|
|
x = x | x >> 4;
|
|
|
|
x = x | x >> 8;
|
|
|
|
x = x | x >> 16;
|
|
|
|
#if 4 < SIZEOF_LONG
|
|
|
|
x = x | x >> 32;
|
|
|
|
#endif
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long
|
2008-08-17 06:43:20 +04:00
|
|
|
limited_rand(struct MT *mt, unsigned long limit)
|
2005-01-04 20:38:39 +03:00
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2005-01-04 20:38:39 +03:00
|
|
|
int i;
|
2009-08-26 18:58:44 +04:00
|
|
|
unsigned long val, mask;
|
2005-01-04 20:38:39 +03:00
|
|
|
|
2009-08-26 18:58:44 +04:00
|
|
|
if (!limit) return 0;
|
|
|
|
mask = make_mask(limit);
|
2005-01-04 20:38:39 +03:00
|
|
|
retry:
|
|
|
|
val = 0;
|
2009-07-16 10:00:35 +04:00
|
|
|
for (i = SIZEOF_LONG/SIZEOF_INT32-1; 0 <= i; i--) {
|
2009-07-10 21:37:52 +04:00
|
|
|
if ((mask >> (i * 32)) & 0xffffffff) {
|
|
|
|
val |= (unsigned long)genrand_int32(mt) << (i * 32);
|
2005-01-04 20:38:39 +03:00
|
|
|
val &= mask;
|
|
|
|
if (limit < val)
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2008-08-17 06:43:20 +04:00
|
|
|
limited_big_rand(struct MT *mt, struct RBignum *limit)
|
2005-01-04 20:38:39 +03:00
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2005-01-04 20:38:39 +03:00
|
|
|
unsigned long mask, lim, rnd;
|
|
|
|
struct RBignum *val;
|
2009-07-10 09:44:08 +04:00
|
|
|
long i, len;
|
|
|
|
int boundary;
|
2005-01-04 20:38:39 +03:00
|
|
|
|
2007-09-01 16:02:36 +04:00
|
|
|
len = (RBIGNUM_LEN(limit) * SIZEOF_BDIGITS + 3) / 4;
|
2005-01-04 20:38:39 +03:00
|
|
|
val = (struct RBignum *)rb_big_clone((VALUE)limit);
|
2007-09-01 16:02:36 +04:00
|
|
|
RBIGNUM_SET_SIGN(val, 1);
|
2005-01-04 20:38:39 +03:00
|
|
|
#if SIZEOF_BDIGITS == 2
|
2008-02-02 03:32:40 +03:00
|
|
|
# define BIG_GET32(big,i) \
|
|
|
|
(RBIGNUM_DIGITS(big)[(i)*2] | \
|
|
|
|
((i)*2+1 < RBIGNUM_LEN(big) ? \
|
|
|
|
(RBIGNUM_DIGITS(big)[(i)*2+1] << 16) : \
|
|
|
|
0))
|
|
|
|
# define BIG_SET32(big,i,d) \
|
|
|
|
((RBIGNUM_DIGITS(big)[(i)*2] = (d) & 0xffff), \
|
|
|
|
((i)*2+1 < RBIGNUM_LEN(big) ? \
|
|
|
|
(RBIGNUM_DIGITS(big)[(i)*2+1] = (d) >> 16) : \
|
|
|
|
0))
|
2005-01-04 20:38:39 +03:00
|
|
|
#else
|
|
|
|
/* SIZEOF_BDIGITS == 4 */
|
2007-09-01 16:02:36 +04:00
|
|
|
# define BIG_GET32(big,i) (RBIGNUM_DIGITS(big)[i])
|
|
|
|
# define BIG_SET32(big,i,d) (RBIGNUM_DIGITS(big)[i] = (d))
|
2005-01-04 20:38:39 +03:00
|
|
|
#endif
|
|
|
|
retry:
|
|
|
|
mask = 0;
|
|
|
|
boundary = 1;
|
|
|
|
for (i = len-1; 0 <= i; i--) {
|
|
|
|
lim = BIG_GET32(limit, i);
|
|
|
|
mask = mask ? 0xffffffff : make_mask(lim);
|
|
|
|
if (mask) {
|
2008-08-17 06:43:20 +04:00
|
|
|
rnd = genrand_int32(mt) & mask;
|
2005-01-04 20:38:39 +03:00
|
|
|
if (boundary) {
|
|
|
|
if (lim < rnd)
|
|
|
|
goto retry;
|
|
|
|
if (rnd < lim)
|
|
|
|
boundary = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rnd = 0;
|
|
|
|
}
|
2009-07-10 09:44:08 +04:00
|
|
|
BIG_SET32(val, i, (BDIGIT)rnd);
|
2005-01-04 20:38:39 +03:00
|
|
|
}
|
|
|
|
return rb_big_norm((VALUE)val);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2008-12-14 06:59:02 +03:00
|
|
|
unsigned long
|
|
|
|
rb_rand_internal(unsigned long i)
|
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
struct MT *mt = default_mt();
|
2008-12-14 06:59:02 +03:00
|
|
|
return limited_rand(mt, i);
|
|
|
|
}
|
|
|
|
|
2009-07-18 04:16:25 +04:00
|
|
|
unsigned int
|
|
|
|
rb_random_int32(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
return genrand_int32(&rnd->mt);
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
rb_random_real(VALUE obj)
|
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
return genrand_real(&rnd->mt);
|
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
/*
|
|
|
|
* call-seq: prng.bytes(size) -> prng
|
|
|
|
*
|
|
|
|
* Returns a random binary string. The argument size specified the length of
|
|
|
|
* the result string.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
random_bytes(VALUE obj, VALUE len)
|
2009-07-18 04:16:25 +04:00
|
|
|
{
|
2009-07-30 16:45:51 +04:00
|
|
|
return rb_random_bytes(obj, NUM2LONG(rb_to_int(len)));
|
2009-07-18 04:16:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_random_bytes(VALUE obj, long n)
|
2009-07-16 10:00:35 +04:00
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
|
|
|
VALUE bytes = rb_str_new(0, n);
|
|
|
|
char *ptr = RSTRING_PTR(bytes);
|
|
|
|
unsigned int r, i;
|
|
|
|
|
|
|
|
for (; n >= SIZEOF_INT32; n -= SIZEOF_INT32) {
|
|
|
|
r = genrand_int32(&rnd->mt);
|
|
|
|
i = SIZEOF_INT32;
|
|
|
|
do {
|
|
|
|
*ptr++ = (char)r;
|
|
|
|
r >>= CHAR_BIT;
|
|
|
|
} while (--i);
|
|
|
|
}
|
|
|
|
if (n > 0) {
|
|
|
|
r = genrand_int32(&rnd->mt);
|
|
|
|
do {
|
|
|
|
*ptr++ = (char)r;
|
|
|
|
r >>= CHAR_BIT;
|
|
|
|
} while (--n);
|
|
|
|
}
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-08-26 14:20:30 +04:00
|
|
|
range_values(VALUE vmax, VALUE *begp, int *exclp)
|
2009-07-16 10:00:35 +04:00
|
|
|
{
|
2009-08-26 14:20:30 +04:00
|
|
|
VALUE end, r;
|
2009-07-16 10:00:35 +04:00
|
|
|
|
2009-08-26 14:20:30 +04:00
|
|
|
if (!rb_range_values(vmax, begp, &end, exclp)) return Qfalse;
|
2009-07-16 10:00:35 +04:00
|
|
|
if (!rb_respond_to(end, id_minus)) return Qfalse;
|
|
|
|
r = rb_funcall2(end, id_minus, 1, begp);
|
|
|
|
if (NIL_P(r)) return Qfalse;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-08-26 14:20:30 +04:00
|
|
|
rand_int(struct MT *mt, VALUE vmax, int restrictive)
|
2009-07-16 10:00:35 +04:00
|
|
|
{
|
2010-03-15 08:06:11 +03:00
|
|
|
/* mt must be initialized */
|
2009-08-02 09:20:51 +04:00
|
|
|
long max;
|
|
|
|
unsigned long r;
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
if (FIXNUM_P(vmax)) {
|
2009-08-02 09:20:51 +04:00
|
|
|
max = FIX2LONG(vmax);
|
2009-07-16 10:00:35 +04:00
|
|
|
if (!max) return Qnil;
|
2009-08-26 14:20:30 +04:00
|
|
|
if (max < 0) {
|
|
|
|
if (restrictive) return Qnil;
|
|
|
|
max = -max;
|
|
|
|
}
|
|
|
|
r = limited_rand(mt, (unsigned long)max - 1);
|
2009-07-16 10:00:35 +04:00
|
|
|
return ULONG2NUM(r);
|
|
|
|
}
|
|
|
|
else {
|
2009-08-02 09:20:51 +04:00
|
|
|
VALUE ret;
|
2009-07-16 10:00:35 +04:00
|
|
|
if (rb_bigzero_p(vmax)) return Qnil;
|
2009-08-02 09:20:51 +04:00
|
|
|
if (!RBIGNUM_SIGN(vmax)) {
|
2009-08-26 14:20:30 +04:00
|
|
|
if (restrictive) return Qnil;
|
2009-08-02 09:20:51 +04:00
|
|
|
vmax = rb_big_clone(vmax);
|
|
|
|
RBIGNUM_SET_SIGN(vmax, 1);
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
2009-08-02 09:20:51 +04:00
|
|
|
vmax = rb_big_minus(vmax, INT2FIX(1));
|
|
|
|
if (FIXNUM_P(vmax)) {
|
|
|
|
max = FIX2LONG(vmax);
|
|
|
|
if (max == -1) return Qnil;
|
|
|
|
r = limited_rand(mt, max);
|
|
|
|
return LONG2NUM(r);
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
2009-08-02 09:20:51 +04:00
|
|
|
ret = limited_big_rand(mt, RBIGNUM(vmax));
|
|
|
|
RB_GC_GUARD(vmax);
|
|
|
|
return ret;
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-26 14:20:30 +04:00
|
|
|
static inline double
|
|
|
|
float_value(VALUE v)
|
|
|
|
{
|
|
|
|
double x = RFLOAT_VALUE(v);
|
|
|
|
if (isinf(x) || isnan(x)) {
|
|
|
|
VALUE error = INT2FIX(EDOM);
|
|
|
|
rb_exc_raise(rb_class_new_instance(1, &error, rb_eSystemCallError));
|
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2009-07-16 10:00:35 +04:00
|
|
|
/*
|
2009-08-26 14:20:30 +04:00
|
|
|
* call-seq:
|
|
|
|
* prng.rand -> float
|
|
|
|
* prng.rand(limit) -> number
|
2009-07-16 10:00:35 +04:00
|
|
|
*
|
|
|
|
* When the argument is an +Integer+ or a +Bignum+, it returns a
|
|
|
|
* random integer greater than or equal to zero and less than the
|
2009-09-03 23:49:43 +04:00
|
|
|
* argument. Unlike Random.rand, when the argument is a negative
|
2009-07-16 10:00:35 +04:00
|
|
|
* integer or zero, it raises an ArgumentError.
|
|
|
|
*
|
2009-08-26 14:20:30 +04:00
|
|
|
* When the argument is a +Float+, it returns a random floating point
|
|
|
|
* number between 0.0 and _max_, including 0.0 and excluding _max_.
|
|
|
|
*
|
2009-07-16 10:00:35 +04:00
|
|
|
* When the argument _limit_ is a +Range+, it returns a random
|
2009-08-26 14:20:30 +04:00
|
|
|
* number where range.member?(number) == true.
|
2010-05-18 01:07:33 +04:00
|
|
|
* prng.rand(5..9) #=> one of [5, 6, 7, 8, 9]
|
|
|
|
* prng.rand(5...9) #=> one of [5, 6, 7, 8]
|
|
|
|
* prng.rand(5.0..9.0) #=> between 5.0 and 9.0, including 9.0
|
|
|
|
* prng.rand(5.0...9.0) #=> between 5.0 and 9.0, excluding 9.0
|
2009-07-16 10:00:35 +04:00
|
|
|
*
|
2009-11-03 20:46:28 +03:00
|
|
|
* +begin+/+end+ of the range have to have subtract and add methods.
|
2009-07-16 10:00:35 +04:00
|
|
|
*
|
|
|
|
* Otherwise, it raises an ArgumentError.
|
|
|
|
*/
|
|
|
|
static VALUE
|
2009-08-26 14:20:30 +04:00
|
|
|
random_rand(int argc, VALUE *argv, VALUE obj)
|
2009-07-16 10:00:35 +04:00
|
|
|
{
|
|
|
|
rb_random_t *rnd = get_rnd(obj);
|
2009-08-26 14:20:30 +04:00
|
|
|
VALUE vmax, beg = Qundef, v;
|
|
|
|
int excl = 0;
|
2009-07-16 10:00:35 +04:00
|
|
|
|
2009-08-26 14:20:30 +04:00
|
|
|
if (argc == 0) {
|
|
|
|
return rb_float_new(genrand_real(&rnd->mt));
|
|
|
|
}
|
|
|
|
else if (argc != 1) {
|
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments (%d for 0..1)", argc);
|
|
|
|
}
|
|
|
|
vmax = argv[0];
|
|
|
|
if (NIL_P(vmax)) {
|
2010-04-03 05:51:26 +04:00
|
|
|
v = Qnil;
|
2009-08-26 14:20:30 +04:00
|
|
|
}
|
|
|
|
else if (TYPE(vmax) != T_FLOAT && (v = rb_check_to_integer(vmax, "to_int"), !NIL_P(v))) {
|
|
|
|
v = rand_int(&rnd->mt, vmax = v, 1);
|
|
|
|
}
|
|
|
|
else if (v = rb_check_to_float(vmax), !NIL_P(v)) {
|
|
|
|
double max = float_value(v);
|
|
|
|
if (max > 0.0)
|
|
|
|
v = rb_float_new(max * genrand_real(&rnd->mt));
|
|
|
|
else
|
|
|
|
v = Qnil;
|
|
|
|
}
|
|
|
|
else if ((v = range_values(vmax, &beg, &excl)) != Qfalse) {
|
|
|
|
vmax = v;
|
|
|
|
if (TYPE(vmax) != T_FLOAT && (v = rb_check_to_integer(vmax, "to_int"), !NIL_P(v))) {
|
|
|
|
long max;
|
|
|
|
vmax = v;
|
|
|
|
v = Qnil;
|
|
|
|
if (FIXNUM_P(vmax)) {
|
|
|
|
fixnum:
|
2009-08-26 18:58:44 +04:00
|
|
|
if ((max = FIX2LONG(vmax) - excl) >= 0) {
|
2009-08-26 14:20:30 +04:00
|
|
|
unsigned long r = limited_rand(&rnd->mt, (unsigned long)max);
|
|
|
|
v = ULONG2NUM(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (BUILTIN_TYPE(vmax) == T_BIGNUM && RBIGNUM_SIGN(vmax) && !rb_bigzero_p(vmax)) {
|
|
|
|
vmax = excl ? rb_big_minus(vmax, INT2FIX(1)) : rb_big_norm(vmax);
|
|
|
|
if (FIXNUM_P(vmax)) {
|
|
|
|
excl = 0;
|
|
|
|
goto fixnum;
|
|
|
|
}
|
|
|
|
v = limited_big_rand(&rnd->mt, RBIGNUM(vmax));
|
2009-08-01 13:51:05 +04:00
|
|
|
}
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
2009-08-26 14:20:30 +04:00
|
|
|
else if (v = rb_check_to_float(vmax), !NIL_P(v)) {
|
|
|
|
double max = float_value(v), r;
|
|
|
|
v = Qnil;
|
|
|
|
if (max > 0.0) {
|
|
|
|
if (excl) {
|
|
|
|
r = genrand_real(&rnd->mt);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
r = genrand_real2(&rnd->mt);
|
|
|
|
}
|
|
|
|
v = rb_float_new(r * max);
|
|
|
|
}
|
2009-08-26 18:58:44 +04:00
|
|
|
else if (max == 0.0 && !excl) {
|
|
|
|
v = rb_float_new(0.0);
|
|
|
|
}
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
|
|
|
}
|
2009-08-26 14:20:30 +04:00
|
|
|
else {
|
2009-08-26 19:00:00 +04:00
|
|
|
v = Qnil;
|
2009-08-26 14:20:30 +04:00
|
|
|
NUM2LONG(vmax);
|
|
|
|
}
|
2009-08-26 19:00:00 +04:00
|
|
|
if (NIL_P(v)) {
|
|
|
|
VALUE mesg = rb_str_new_cstr("invalid argument - ");
|
|
|
|
rb_str_append(mesg, rb_obj_as_string(argv[0]));
|
|
|
|
rb_exc_raise(rb_exc_new3(rb_eArgError, mesg));
|
|
|
|
}
|
|
|
|
if (beg == Qundef) return v;
|
|
|
|
if (FIXNUM_P(beg) && FIXNUM_P(v)) {
|
|
|
|
long x = FIX2LONG(beg) + FIX2LONG(v);
|
|
|
|
return LONG2NUM(x);
|
|
|
|
}
|
2009-08-27 08:51:19 +04:00
|
|
|
switch (TYPE(v)) {
|
2009-08-26 19:00:00 +04:00
|
|
|
case T_BIGNUM:
|
|
|
|
return rb_big_plus(v, beg);
|
2010-05-26 07:08:07 +04:00
|
|
|
case T_FLOAT: {
|
|
|
|
VALUE f = rb_check_to_float(beg);
|
|
|
|
if (!NIL_P(f)) {
|
|
|
|
RFLOAT_VALUE(v) += RFLOAT_VALUE(f);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
2009-08-26 19:00:00 +04:00
|
|
|
default:
|
2010-05-26 15:19:30 +04:00
|
|
|
return rb_funcall2(beg, id_plus, 1, &v);
|
2009-08-26 19:00:00 +04:00
|
|
|
}
|
2009-07-16 10:00:35 +04:00
|
|
|
}
|
|
|
|
|
2009-07-17 08:56:12 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* prng1 == prng2 -> true or false
|
|
|
|
*
|
|
|
|
* Returns true if the generators' states equal.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
random_equal(VALUE self, VALUE other)
|
|
|
|
{
|
|
|
|
rb_random_t *r1, *r2;
|
|
|
|
if (rb_obj_class(self) != rb_obj_class(other)) return Qfalse;
|
|
|
|
r1 = get_rnd(self);
|
|
|
|
r2 = get_rnd(other);
|
|
|
|
if (!RTEST(rb_funcall2(r1->seed, rb_intern("=="), 1, &r2->seed))) return Qfalse;
|
|
|
|
if (memcmp(r1->mt.state, r2->mt.state, sizeof(r1->mt.state))) return Qfalse;
|
|
|
|
if ((r1->mt.next - r1->mt.state) != (r2->mt.next - r2->mt.state)) return Qfalse;
|
|
|
|
if (r1->mt.left != r2->mt.left) return Qfalse;
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-28 23:47:56 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* rand(max=0) -> number
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-28 23:47:56 +03:00
|
|
|
* Converts <i>max</i> to an integer using max1 =
|
2010-04-03 05:51:26 +04:00
|
|
|
* max<code>.to_i.abs</code>. If _max_ is +nil+ the result is zero, returns a
|
2003-12-28 23:47:56 +03:00
|
|
|
* pseudorandom floating point number greater than or equal to 0.0 and
|
|
|
|
* less than 1.0. Otherwise, returns a pseudorandom integer greater
|
|
|
|
* than or equal to zero and less than max1. <code>Kernel::srand</code>
|
|
|
|
* may be used to ensure repeatable sequences of random numbers between
|
|
|
|
* different runs of the program. Ruby currently uses a modified
|
2006-09-25 03:14:14 +04:00
|
|
|
* Mersenne Twister with a period of 2**19937-1.
|
2009-02-22 17:23:33 +03:00
|
|
|
*
|
2003-12-28 23:47:56 +03:00
|
|
|
* srand 1234 #=> 0
|
|
|
|
* [ rand, rand ] #=> [0.191519450163469, 0.49766366626136]
|
|
|
|
* [ rand(10), rand(1000) ] #=> [6, 817]
|
|
|
|
* srand 1234 #=> 1234
|
|
|
|
* [ rand, rand ] #=> [0.191519450163469, 0.49766366626136]
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_rand(int argc, VALUE *argv, VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2009-07-16 10:00:35 +04:00
|
|
|
VALUE vmax, r;
|
2010-03-15 08:06:11 +03:00
|
|
|
struct MT *mt = default_mt();
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-12-29 16:29:12 +03:00
|
|
|
if (argc == 0) goto zero_arg;
|
|
|
|
rb_scan_args(argc, argv, "01", &vmax);
|
|
|
|
if (NIL_P(vmax)) goto zero_arg;
|
|
|
|
vmax = rb_to_int(vmax);
|
2009-08-26 14:20:30 +04:00
|
|
|
if (vmax == INT2FIX(0) || NIL_P(r = rand_int(mt, vmax, 0))) {
|
2008-12-29 16:29:12 +03:00
|
|
|
zero_arg:
|
2008-09-05 22:24:21 +04:00
|
|
|
return DBL2NUM(genrand_real(mt));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2009-07-16 10:00:35 +04:00
|
|
|
return r;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-11-04 02:50:51 +03:00
|
|
|
static st_index_t hashseed;
|
|
|
|
|
2010-03-15 12:33:39 +03:00
|
|
|
static VALUE
|
|
|
|
init_randomseed(struct MT *mt, unsigned int initial[DEFAULT_SEED_CNT])
|
|
|
|
{
|
|
|
|
VALUE seed;
|
|
|
|
fill_random_seed(initial);
|
|
|
|
init_by_array(mt, initial, DEFAULT_SEED_CNT);
|
|
|
|
seed = make_seed_value(initial);
|
|
|
|
memset(initial, 0, DEFAULT_SEED_LEN);
|
|
|
|
return seed;
|
|
|
|
}
|
|
|
|
|
2008-06-20 06:46:17 +04:00
|
|
|
void
|
|
|
|
Init_RandomSeed(void)
|
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
rb_random_t *r = &default_rand;
|
|
|
|
unsigned int initial[DEFAULT_SEED_CNT];
|
|
|
|
struct MT *mt = &r->mt;
|
|
|
|
VALUE seed = init_randomseed(mt, initial);
|
2009-11-04 02:50:51 +03:00
|
|
|
|
|
|
|
hashseed = genrand_int32(mt);
|
|
|
|
#if SIZEOF_ST_INDEX_T*CHAR_BIT > 4*8
|
|
|
|
hashseed <<= 32;
|
|
|
|
hashseed |= genrand_int32(mt);
|
|
|
|
#endif
|
|
|
|
#if SIZEOF_ST_INDEX_T*CHAR_BIT > 8*8
|
|
|
|
hashseed <<= 32;
|
|
|
|
hashseed |= genrand_int32(mt);
|
|
|
|
#endif
|
|
|
|
#if SIZEOF_ST_INDEX_T*CHAR_BIT > 12*8
|
|
|
|
hashseed <<= 32;
|
|
|
|
hashseed |= genrand_int32(mt);
|
|
|
|
#endif
|
2010-03-15 12:33:39 +03:00
|
|
|
|
|
|
|
rb_global_variable(&r->seed);
|
|
|
|
r->seed = seed;
|
2009-11-04 02:50:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
st_index_t
|
|
|
|
rb_hash_start(st_index_t h)
|
|
|
|
{
|
|
|
|
return st_hash_start(hashseed + h);
|
2008-06-20 06:46:17 +04:00
|
|
|
}
|
|
|
|
|
2008-06-20 07:29:19 +04:00
|
|
|
static void
|
2008-06-20 06:46:17 +04:00
|
|
|
Init_RandomSeed2(void)
|
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
VALUE seed = default_rand.seed;
|
|
|
|
|
|
|
|
if (RB_TYPE_P(seed, T_BIGNUM)) {
|
|
|
|
RBASIC(seed)->klass = rb_cBignum;
|
|
|
|
}
|
2008-06-20 06:46:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_reset_random_seed(void)
|
|
|
|
{
|
2010-03-15 12:33:39 +03:00
|
|
|
rb_random_t *r = &default_rand;
|
|
|
|
uninit_genrand(&r->mt);
|
|
|
|
r->seed = INT2FIX(0);
|
2008-06-20 06:46:17 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_Random(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-06-20 06:46:17 +04:00
|
|
|
Init_RandomSeed2();
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_global_function("srand", rb_f_srand, -1);
|
2000-07-04 08:17:26 +04:00
|
|
|
rb_define_global_function("rand", rb_f_rand, -1);
|
2009-07-16 10:00:35 +04:00
|
|
|
|
|
|
|
rb_cRandom = rb_define_class("Random", rb_cObject);
|
|
|
|
rb_define_alloc_func(rb_cRandom, random_alloc);
|
|
|
|
rb_define_method(rb_cRandom, "initialize", random_init, -1);
|
2009-08-26 14:20:30 +04:00
|
|
|
rb_define_method(rb_cRandom, "rand", random_rand, -1);
|
2009-07-16 10:00:35 +04:00
|
|
|
rb_define_method(rb_cRandom, "bytes", random_bytes, 1);
|
|
|
|
rb_define_method(rb_cRandom, "seed", random_get_seed, 0);
|
|
|
|
rb_define_method(rb_cRandom, "initialize_copy", random_copy, 1);
|
|
|
|
rb_define_method(rb_cRandom, "marshal_dump", random_dump, 0);
|
|
|
|
rb_define_method(rb_cRandom, "marshal_load", random_load, 1);
|
2009-07-23 03:52:20 +04:00
|
|
|
rb_define_private_method(rb_cRandom, "state", random_state, 0);
|
|
|
|
rb_define_private_method(rb_cRandom, "left", random_left, 0);
|
2009-07-17 08:56:12 +04:00
|
|
|
rb_define_method(rb_cRandom, "==", random_equal, 1);
|
2009-07-16 10:00:35 +04:00
|
|
|
|
|
|
|
rb_define_singleton_method(rb_cRandom, "srand", rb_f_srand, -1);
|
|
|
|
rb_define_singleton_method(rb_cRandom, "rand", rb_f_rand, -1);
|
|
|
|
rb_define_singleton_method(rb_cRandom, "new_seed", random_seed, 0);
|
2009-07-23 03:52:20 +04:00
|
|
|
rb_define_private_method(CLASS_OF(rb_cRandom), "state", random_s_state, 0);
|
|
|
|
rb_define_private_method(CLASS_OF(rb_cRandom), "left", random_s_left, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|