2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-04-24 07:29:19 -05:00
|
|
|
/*!
|
|
|
|
Random number generation.
|
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
The key functions are `random()` and `Rng::gen()`. These are polymorphic
|
2013-04-24 07:29:19 -05:00
|
|
|
and so can be used to generate any type that implements `Rand`. Type inference
|
|
|
|
means that often a simple call to `rand::random()` or `rng.gen()` will
|
2013-09-26 01:26:09 -05:00
|
|
|
suffice, but sometimes an annotation is required, e.g. `rand::random::<f64>()`.
|
2013-04-24 07:29:19 -05:00
|
|
|
|
2013-04-28 09:18:53 -05:00
|
|
|
See the `distributions` submodule for sampling random numbers from
|
|
|
|
distributions like normal and exponential.
|
|
|
|
|
2013-04-24 07:29:19 -05:00
|
|
|
# Examples
|
2013-05-27 08:49:54 -05:00
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
```rust
|
2013-07-10 08:30:14 -05:00
|
|
|
use std::rand;
|
2013-09-20 06:47:05 -05:00
|
|
|
use std::rand::Rng;
|
2013-04-24 07:29:19 -05:00
|
|
|
|
|
|
|
fn main() {
|
2013-05-17 13:23:53 -05:00
|
|
|
let mut rng = rand::rng();
|
2013-04-24 07:29:19 -05:00
|
|
|
if rng.gen() { // bool
|
2013-09-25 00:16:43 -05:00
|
|
|
println!("int: {}, uint: {}", rng.gen::<int>(), rng.gen::<uint>())
|
2013-04-24 07:29:19 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-23 19:20:36 -05:00
|
|
|
```
|
2013-04-24 07:29:19 -05:00
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
```rust
|
2013-07-10 08:30:14 -05:00
|
|
|
use std::rand;
|
|
|
|
|
2013-04-24 07:29:19 -05:00
|
|
|
fn main () {
|
|
|
|
let tuple_ptr = rand::random::<~(f64, char)>();
|
2013-09-25 00:16:43 -05:00
|
|
|
println!(tuple_ptr)
|
2013-04-24 07:29:19 -05:00
|
|
|
}
|
2013-09-23 19:20:36 -05:00
|
|
|
```
|
2013-04-24 07:29:19 -05:00
|
|
|
*/
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use cast;
|
2013-06-18 11:39:16 -05:00
|
|
|
use container::Container;
|
2012-12-23 16:41:37 -06:00
|
|
|
use int;
|
2013-09-22 05:51:57 -05:00
|
|
|
use iter::{Iterator, range};
|
2013-05-24 21:35:29 -05:00
|
|
|
use local_data;
|
2013-01-08 21:37:25 -06:00
|
|
|
use prelude::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use str;
|
|
|
|
use u32;
|
2013-09-20 06:47:05 -05:00
|
|
|
use u64;
|
2012-12-23 16:41:37 -06:00
|
|
|
use uint;
|
|
|
|
use vec;
|
|
|
|
|
2013-09-21 07:06:50 -05:00
|
|
|
pub use self::isaac::{IsaacRng, Isaac64Rng};
|
2013-09-22 05:51:57 -05:00
|
|
|
pub use self::os::OSRng;
|
2013-09-21 06:32:57 -05:00
|
|
|
|
2013-04-28 09:18:53 -05:00
|
|
|
pub mod distributions;
|
2013-09-21 06:32:57 -05:00
|
|
|
pub mod isaac;
|
2013-09-22 05:51:57 -05:00
|
|
|
pub mod os;
|
|
|
|
pub mod reader;
|
2013-09-29 01:49:11 -05:00
|
|
|
pub mod reseeding;
|
2013-04-28 09:18:53 -05:00
|
|
|
|
2013-04-24 07:29:19 -05:00
|
|
|
/// A type that can be randomly generated using an Rng
|
2013-02-05 06:56:40 -06:00
|
|
|
pub trait Rand {
|
2013-05-28 16:35:52 -05:00
|
|
|
/// Generates a random instance of this type using the specified source of
|
|
|
|
/// randomness
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> Self;
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for int {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> int {
|
2013-04-24 07:29:19 -05:00
|
|
|
if int::bits == 32 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.gen::<i32>() as int
|
2013-04-24 07:29:19 -05:00
|
|
|
} else {
|
|
|
|
rng.gen::<i64>() as int
|
|
|
|
}
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for i8 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> i8 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32() as i8
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for i16 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> i16 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32() as i16
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for i32 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> i32 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32() as i32
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for i64 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> i64 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u64() as i64
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-21 07:09:33 -05:00
|
|
|
impl Rand for uint {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> uint {
|
2013-04-24 07:29:19 -05:00
|
|
|
if uint::bits == 32 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.gen::<u32>() as uint
|
2013-04-24 07:29:19 -05:00
|
|
|
} else {
|
|
|
|
rng.gen::<u64>() as uint
|
|
|
|
}
|
2013-04-21 07:09:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for u8 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> u8 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32() as u8
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for u16 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> u16 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32() as u16
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for u32 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> u32 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u32()
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for u64 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> u64 {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.next_u64()
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for f32 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> f32 {
|
2013-04-24 07:29:19 -05:00
|
|
|
rng.gen::<f64>() as f32
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-30 22:51:13 -05:00
|
|
|
static SCALE : f64 = (u32::max_value as f64) + 1.0f64;
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for f64 {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> f64 {
|
2013-09-21 07:06:50 -05:00
|
|
|
let u1 = rng.next_u32() as f64;
|
|
|
|
let u2 = rng.next_u32() as f64;
|
|
|
|
let u3 = rng.next_u32() as f64;
|
2013-04-24 07:29:19 -05:00
|
|
|
|
2013-06-30 22:51:13 -05:00
|
|
|
((u1 / SCALE + u2) / SCALE + u3) / SCALE
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Rand for bool {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> bool {
|
2013-09-21 07:06:50 -05:00
|
|
|
rng.gen::<u8>() & 1 == 1
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-22 04:01:48 -05:00
|
|
|
macro_rules! tuple_impl {
|
|
|
|
// use variables to indicate the arity of the tuple
|
|
|
|
($($tyvar:ident),* ) => {
|
|
|
|
// the trailing commas are for the 1 tuple
|
|
|
|
impl<
|
|
|
|
$( $tyvar : Rand ),*
|
|
|
|
> Rand for ( $( $tyvar ),* , ) {
|
|
|
|
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(_rng: &mut R) -> ( $( $tyvar ),* , ) {
|
2013-04-22 04:01:48 -05:00
|
|
|
(
|
2013-04-23 09:00:43 -05:00
|
|
|
// use the $tyvar's to get the appropriate number of
|
|
|
|
// repeats (they're not actually needed)
|
2013-04-22 04:01:48 -05:00
|
|
|
$(
|
|
|
|
_rng.gen::<$tyvar>()
|
|
|
|
),*
|
|
|
|
,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-26 08:53:29 -05:00
|
|
|
impl Rand for () {
|
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(_: &mut R) -> () { () }
|
2013-04-26 08:53:29 -05:00
|
|
|
}
|
2013-04-22 04:01:48 -05:00
|
|
|
tuple_impl!{A}
|
|
|
|
tuple_impl!{A, B}
|
|
|
|
tuple_impl!{A, B, C}
|
|
|
|
tuple_impl!{A, B, C, D}
|
|
|
|
tuple_impl!{A, B, C, D, E}
|
|
|
|
tuple_impl!{A, B, C, D, E, F}
|
|
|
|
tuple_impl!{A, B, C, D, E, F, G}
|
|
|
|
tuple_impl!{A, B, C, D, E, F, G, H}
|
|
|
|
tuple_impl!{A, B, C, D, E, F, G, H, I}
|
|
|
|
tuple_impl!{A, B, C, D, E, F, G, H, I, J}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
impl<T:Rand> Rand for Option<T> {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> Option<T> {
|
2013-04-24 07:29:19 -05:00
|
|
|
if rng.gen() {
|
2013-04-23 09:00:43 -05:00
|
|
|
Some(rng.gen())
|
2013-03-12 15:00:50 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-22 04:01:48 -05:00
|
|
|
impl<T: Rand> Rand for ~T {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> ~T { ~rng.gen() }
|
2013-04-22 04:01:48 -05:00
|
|
|
}
|
|
|
|
|
2013-07-18 19:12:46 -05:00
|
|
|
impl<T: Rand + 'static> Rand for @T {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn rand<R: Rng>(rng: &mut R) -> @T { @rng.gen() }
|
2013-04-22 04:01:48 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// A value with a particular weight compared to other values
|
2013-01-22 10:12:52 -06:00
|
|
|
pub struct Weighted<T> {
|
2013-05-28 16:35:52 -05:00
|
|
|
/// The numerical weight of this item
|
2013-01-22 10:12:52 -06:00
|
|
|
weight: uint,
|
2013-05-28 16:35:52 -05:00
|
|
|
/// The actual item which is being weighted
|
2013-01-22 10:12:52 -06:00
|
|
|
item: T,
|
|
|
|
}
|
2013-04-24 07:29:19 -05:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// A random number generator
|
|
|
|
pub trait Rng {
|
2013-09-22 05:51:57 -05:00
|
|
|
/// Return the next random u32. This rarely needs to be called
|
|
|
|
/// directly, prefer `r.gen()` to `r.next_u32()`.
|
2013-09-21 07:06:50 -05:00
|
|
|
///
|
|
|
|
/// By default this is implemented in terms of `next_u64`. An
|
|
|
|
/// implementation of this trait must provide at least one of
|
|
|
|
/// these two methods.
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
self.next_u64() as u32
|
|
|
|
}
|
|
|
|
|
2013-09-22 05:51:57 -05:00
|
|
|
/// Return the next random u64. This rarely needs to be called
|
|
|
|
/// directly, prefer `r.gen()` to `r.next_u64()`.
|
2013-09-21 07:06:50 -05:00
|
|
|
///
|
|
|
|
/// By default this is implemented in terms of `next_u32`. An
|
|
|
|
/// implementation of this trait must provide at least one of
|
|
|
|
/// these two methods.
|
|
|
|
fn next_u64(&mut self) -> u64 {
|
|
|
|
(self.next_u32() as u64 << 32) | (self.next_u32() as u64)
|
|
|
|
}
|
2013-08-13 06:44:16 -05:00
|
|
|
|
2013-09-22 05:51:57 -05:00
|
|
|
/// Fill `dest` with random data.
|
|
|
|
///
|
|
|
|
/// This has a default implementation in terms of `next_u64` and
|
|
|
|
/// `next_u32`, but should be overriden by implementations that
|
|
|
|
/// offer a more efficient solution than just calling those
|
|
|
|
/// methods repeatedly.
|
|
|
|
///
|
|
|
|
/// This method does *not* have a requirement to bear any fixed
|
|
|
|
/// relationship to the other methods, for example, it does *not*
|
|
|
|
/// have to result in the same output as progressively filling
|
|
|
|
/// `dest` with `self.gen::<u8>()`, and any such behaviour should
|
|
|
|
/// not be relied upon.
|
|
|
|
///
|
|
|
|
/// This method should guarantee that `dest` is entirely filled
|
|
|
|
/// with new data, and may fail if this is impossible
|
|
|
|
/// (e.g. reading past the end of a file that is being used as the
|
|
|
|
/// source of randomness).
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ~~~{.rust}
|
|
|
|
/// use std::rand::{task_rng, Rng};
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut v = [0u8, .. 13579];
|
|
|
|
/// task_rng().fill_bytes(v);
|
|
|
|
/// printfln!(v);
|
|
|
|
/// }
|
|
|
|
/// ~~~
|
|
|
|
fn fill_bytes(&mut self, mut dest: &mut [u8]) {
|
|
|
|
// this relies on the lengths being transferred correctly when
|
|
|
|
// transmuting between vectors like this.
|
|
|
|
let as_u64: &mut &mut [u64] = unsafe { cast::transmute(&mut dest) };
|
|
|
|
for dest in as_u64.mut_iter() {
|
|
|
|
*dest = self.next_u64();
|
|
|
|
}
|
|
|
|
|
|
|
|
// the above will have filled up the vector as much as
|
|
|
|
// possible in multiples of 8 bytes.
|
|
|
|
let mut remaining = dest.len() % 8;
|
|
|
|
|
|
|
|
// space for a u32
|
|
|
|
if remaining >= 4 {
|
|
|
|
let as_u32: &mut &mut [u32] = unsafe { cast::transmute(&mut dest) };
|
|
|
|
as_u32[as_u32.len() - 1] = self.next_u32();
|
|
|
|
remaining -= 4;
|
|
|
|
}
|
|
|
|
// exactly filled
|
|
|
|
if remaining == 0 { return }
|
|
|
|
|
|
|
|
// now we know we've either got 1, 2 or 3 spots to go,
|
|
|
|
// i.e. exactly one u32 is enough.
|
|
|
|
let rand = self.next_u32();
|
|
|
|
let remaining_index = dest.len() - remaining;
|
|
|
|
match dest.mut_slice_from(remaining_index) {
|
|
|
|
[ref mut a] => {
|
|
|
|
*a = rand as u8;
|
|
|
|
}
|
|
|
|
[ref mut a, ref mut b] => {
|
|
|
|
*a = rand as u8;
|
|
|
|
*b = (rand >> 8) as u8;
|
|
|
|
}
|
|
|
|
[ref mut a, ref mut b, ref mut c] => {
|
|
|
|
*a = rand as u8;
|
|
|
|
*b = (rand >> 8) as u8;
|
|
|
|
*c = (rand >> 16) as u8;
|
|
|
|
}
|
|
|
|
_ => fail2!("Rng.fill_bytes: the impossible occurred: remaining != 1, 2 or 3")
|
|
|
|
}
|
|
|
|
}
|
2013-03-12 15:00:50 -05:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Return a random value of a Rand type.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let mut rng = rand::task_rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
/// let x: uint = rng.gen();
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{}", x);
|
2013-09-26 01:26:09 -05:00
|
|
|
/// println!("{:?}", rng.gen::<(f64, bool)>());
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
#[inline(always)]
|
2013-05-03 01:09:50 -05:00
|
|
|
fn gen<T: Rand>(&mut self) -> T {
|
2013-04-23 09:00:43 -05:00
|
|
|
Rand::rand(self)
|
2013-02-05 06:56:40 -06:00
|
|
|
}
|
2011-10-26 18:24:31 -05:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Return a random vector of the specified length.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let mut rng = rand::task_rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
/// let x: ~[uint] = rng.gen_vec(10);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", x);
|
2013-09-26 01:26:09 -05:00
|
|
|
/// println!("{:?}", rng.gen_vec::<(f64, bool)>(5));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn gen_vec<T: Rand>(&mut self, len: uint) -> ~[T] {
|
|
|
|
vec::from_fn(len, |_| self.gen())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate a random primitive integer in the range [`low`,
|
|
|
|
/// `high`). Fails if `low >= high`.
|
|
|
|
///
|
|
|
|
/// This gives a uniform distribution (assuming this RNG is itself
|
|
|
|
/// uniform), even for edge cases like `gen_integer_range(0u8,
|
|
|
|
/// 170)`, which a naive modulo operation would return numbers
|
|
|
|
/// less than 85 with double the probability to those greater than
|
|
|
|
/// 85.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let mut rng = rand::task_rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
/// let n: uint = rng.gen_integer_range(0u, 10);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{}", n);
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let m: int = rng.gen_integer_range(-40, 400);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{}", m);
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn gen_integer_range<T: Rand + Int>(&mut self, low: T, high: T) -> T {
|
|
|
|
assert!(low < high, "RNG.gen_integer_range called with low >= high");
|
2013-09-15 11:50:17 -05:00
|
|
|
let range = (high - low).to_u64().unwrap();
|
2013-09-20 06:47:05 -05:00
|
|
|
let accept_zone = u64::max_value - u64::max_value % range;
|
|
|
|
loop {
|
|
|
|
let rand = self.gen::<u64>();
|
|
|
|
if rand < accept_zone {
|
2013-09-15 11:50:17 -05:00
|
|
|
return low + NumCast::from(rand % range).unwrap();
|
2013-09-20 06:47:05 -05:00
|
|
|
}
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Return a bool with a 1 in n chance of true
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
|
|
|
/// use std::rand::Rng;
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut rng = rand::rng();
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:b}", rng.gen_weighted_bool(3));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn gen_weighted_bool(&mut self, n: uint) -> bool {
|
|
|
|
n == 0 || self.gen_integer_range(0, n) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return a random string of the specified length composed of
|
|
|
|
/// A-Z,a-z,0-9.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// println(rand::task_rng().gen_ascii_str(10));
|
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn gen_ascii_str(&mut self, len: uint) -> ~str {
|
|
|
|
static GEN_ASCII_STR_CHARSET: &'static [u8] = bytes!("ABCDEFGHIJKLMNOPQRSTUVWXYZ\
|
|
|
|
abcdefghijklmnopqrstuvwxyz\
|
|
|
|
0123456789");
|
|
|
|
let mut s = str::with_capacity(len);
|
|
|
|
for _ in range(0, len) {
|
|
|
|
s.push_char(self.choose(GEN_ASCII_STR_CHARSET) as char)
|
2012-05-17 13:52:49 -05:00
|
|
|
}
|
2013-02-15 02:51:28 -06:00
|
|
|
s
|
2012-05-17 13:52:49 -05:00
|
|
|
}
|
2011-12-26 21:31:25 -06:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Choose an item randomly, failing if `values` is empty.
|
|
|
|
fn choose<T: Clone>(&mut self, values: &[T]) -> T {
|
|
|
|
self.choose_option(values).expect("Rng.choose: `values` is empty").clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Choose `Some(&item)` randomly, returning `None` if values is
|
|
|
|
/// empty.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", rand::task_rng().choose_option([1,2,4,8,16,32]));
|
|
|
|
/// println!("{:?}", rand::task_rng().choose_option([]));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn choose_option<'a, T>(&mut self, values: &'a [T]) -> Option<&'a T> {
|
2012-05-19 13:25:45 -05:00
|
|
|
if values.is_empty() {
|
2012-08-20 14:23:37 -05:00
|
|
|
None
|
2012-05-19 13:25:45 -05:00
|
|
|
} else {
|
2013-09-20 06:47:05 -05:00
|
|
|
Some(&values[self.gen_integer_range(0u, values.len())])
|
2012-05-17 13:52:49 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-19 13:25:45 -05:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Choose an item respecting the relative weights, failing if the sum of
|
|
|
|
/// the weights is 0
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
|
|
|
/// use std::rand::Rng;
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut rng = rand::rng();
|
|
|
|
/// let x = [rand::Weighted {weight: 4, item: 'a'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'b'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'c'}];
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{}", rng.choose_weighted(x));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn choose_weighted<T:Clone>(&mut self, v: &[Weighted<T>]) -> T {
|
|
|
|
self.choose_weighted_option(v).expect("Rng.choose_weighted: total weight is 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Choose Some(item) respecting the relative weights, returning none if
|
|
|
|
/// the sum of the weights is 0
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
|
|
|
/// use std::rand::Rng;
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut rng = rand::rng();
|
|
|
|
/// let x = [rand::Weighted {weight: 4, item: 'a'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'b'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'c'}];
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", rng.choose_weighted_option(x));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-07-02 14:47:32 -05:00
|
|
|
fn choose_weighted_option<T:Clone>(&mut self, v: &[Weighted<T>])
|
|
|
|
-> Option<T> {
|
2012-05-19 13:25:45 -05:00
|
|
|
let mut total = 0u;
|
2013-08-03 11:45:23 -05:00
|
|
|
for item in v.iter() {
|
2012-05-19 13:25:45 -05:00
|
|
|
total += item.weight;
|
|
|
|
}
|
|
|
|
if total == 0u {
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
2013-09-20 06:47:05 -05:00
|
|
|
let chosen = self.gen_integer_range(0u, total);
|
2012-05-19 13:25:45 -05:00
|
|
|
let mut so_far = 0u;
|
2013-08-03 11:45:23 -05:00
|
|
|
for item in v.iter() {
|
2012-05-19 13:25:45 -05:00
|
|
|
so_far += item.weight;
|
|
|
|
if so_far > chosen {
|
2013-07-02 14:47:32 -05:00
|
|
|
return Some(item.item.clone());
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-19 00:04:03 -05:00
|
|
|
unreachable!();
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Return a vec containing copies of the items, in order, where
|
|
|
|
/// the weight of the item determines how many copies there are
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
|
|
|
/// use std::rand::Rng;
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let mut rng = rand::rng();
|
|
|
|
/// let x = [rand::Weighted {weight: 4, item: 'a'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'b'},
|
|
|
|
/// rand::Weighted {weight: 2, item: 'c'}];
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{}", rng.weighted_vec(x));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-07-02 14:47:32 -05:00
|
|
|
fn weighted_vec<T:Clone>(&mut self, v: &[Weighted<T>]) -> ~[T] {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut r = ~[];
|
2013-08-03 11:45:23 -05:00
|
|
|
for item in v.iter() {
|
|
|
|
for _ in range(0u, item.weight) {
|
2013-07-02 14:47:32 -05:00
|
|
|
r.push(item.item.clone());
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-15 02:51:28 -06:00
|
|
|
r
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Shuffle a vec
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", rand::task_rng().shuffle(~[1,2,3]));
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-09-20 06:47:05 -05:00
|
|
|
fn shuffle<T>(&mut self, values: ~[T]) -> ~[T] {
|
|
|
|
let mut v = values;
|
|
|
|
self.shuffle_mut(v);
|
|
|
|
v
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Shuffle a mutable vector in place.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let mut rng = rand::task_rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
/// let mut y = [1,2,3];
|
|
|
|
/// rng.shuffle_mut(y);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", y);
|
2013-09-20 06:47:05 -05:00
|
|
|
/// rng.shuffle_mut(y);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", y);
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-05-03 01:09:50 -05:00
|
|
|
fn shuffle_mut<T>(&mut self, values: &mut [T]) {
|
2012-05-19 13:25:45 -05:00
|
|
|
let mut i = values.len();
|
|
|
|
while i >= 2u {
|
|
|
|
// invariant: elements with index >= i have been locked in place.
|
|
|
|
i -= 1u;
|
|
|
|
// lock element i in place.
|
2013-09-20 06:47:05 -05:00
|
|
|
values.swap(i, self.gen_integer_range(0u, i + 1u));
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
}
|
2013-08-13 06:44:16 -05:00
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
/// Randomly sample up to `n` elements from an iterator.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```rust
|
2013-09-20 06:47:05 -05:00
|
|
|
/// use std::rand;
|
2013-10-04 09:38:05 -05:00
|
|
|
/// use std::rand::Rng;
|
2013-09-20 06:47:05 -05:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2013-10-04 09:38:05 -05:00
|
|
|
/// let mut rng = rand::task_rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
/// let sample = rng.sample(range(1, 100), 5);
|
2013-09-25 00:16:43 -05:00
|
|
|
/// println!("{:?}", sample);
|
2013-09-20 06:47:05 -05:00
|
|
|
/// }
|
2013-09-23 19:20:36 -05:00
|
|
|
/// ```
|
2013-08-13 06:44:16 -05:00
|
|
|
fn sample<A, T: Iterator<A>>(&mut self, iter: T, n: uint) -> ~[A] {
|
|
|
|
let mut reservoir : ~[A] = vec::with_capacity(n);
|
|
|
|
for (i, elem) in iter.enumerate() {
|
|
|
|
if i < n {
|
|
|
|
reservoir.push(elem);
|
2013-10-01 16:31:03 -05:00
|
|
|
continue
|
2013-08-13 06:44:16 -05:00
|
|
|
}
|
|
|
|
|
2013-09-20 06:47:05 -05:00
|
|
|
let k = self.gen_integer_range(0, i + 1);
|
2013-08-13 06:44:16 -05:00
|
|
|
if k < reservoir.len() {
|
|
|
|
reservoir[k] = elem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reservoir
|
|
|
|
}
|
2013-04-23 09:00:43 -05:00
|
|
|
}
|
2012-05-19 13:25:45 -05:00
|
|
|
|
2013-04-23 09:00:43 -05:00
|
|
|
/// Create a random number generator with a default algorithm and seed.
|
2013-08-06 15:13:26 -05:00
|
|
|
///
|
|
|
|
/// It returns the cryptographically-safest `Rng` algorithm currently
|
|
|
|
/// available in Rust. If you require a specifically seeded `Rng` for
|
|
|
|
/// consistency over time you should pick one algorithm and create the
|
|
|
|
/// `Rng` yourself.
|
2013-09-26 04:08:44 -05:00
|
|
|
///
|
|
|
|
/// This is a very expensive operation as it has to read randomness
|
|
|
|
/// from the operating system and use this in an expensive seeding
|
|
|
|
/// operation. If one does not require high performance, `task_rng`
|
|
|
|
/// and/or `random` may be more appropriate.
|
|
|
|
pub fn rng() -> StdRng {
|
|
|
|
StdRng::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The standard RNG. This is designed to be efficient on the current
|
|
|
|
/// platform.
|
|
|
|
#[cfg(not(target_word_size="64"))]
|
|
|
|
pub struct StdRng { priv rng: IsaacRng }
|
|
|
|
|
|
|
|
/// The standard RNG. This is designed to be efficient on the current
|
|
|
|
/// platform.
|
|
|
|
#[cfg(target_word_size="64")]
|
|
|
|
pub struct StdRng { priv rng: Isaac64Rng }
|
|
|
|
|
|
|
|
impl StdRng {
|
|
|
|
#[cfg(not(target_word_size="64"))]
|
|
|
|
fn new() -> StdRng {
|
|
|
|
StdRng { rng: IsaacRng::new() }
|
|
|
|
}
|
|
|
|
#[cfg(target_word_size="64")]
|
|
|
|
fn new() -> StdRng {
|
|
|
|
StdRng { rng: Isaac64Rng::new() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Rng for StdRng {
|
|
|
|
#[inline]
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
self.rng.next_u32()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn next_u64(&mut self) -> u64 {
|
|
|
|
self.rng.next_u64()
|
|
|
|
}
|
2012-01-11 05:54:39 -06:00
|
|
|
}
|
2011-07-29 06:31:44 -05:00
|
|
|
|
2013-08-06 15:14:32 -05:00
|
|
|
/// Create a weak random number generator with a default algorithm and seed.
|
|
|
|
///
|
2013-08-16 00:41:28 -05:00
|
|
|
/// It returns the fastest `Rng` algorithm currently available in Rust without
|
2013-08-06 15:14:32 -05:00
|
|
|
/// consideration for cryptography or security. If you require a specifically
|
|
|
|
/// seeded `Rng` for consistency over time you should pick one algorithm and
|
|
|
|
/// create the `Rng` yourself.
|
|
|
|
pub fn weak_rng() -> XorShiftRng {
|
|
|
|
XorShiftRng::new()
|
|
|
|
}
|
|
|
|
|
2013-04-26 08:53:29 -05:00
|
|
|
/// An [Xorshift random number
|
2013-08-06 15:13:26 -05:00
|
|
|
/// generator](http://en.wikipedia.org/wiki/Xorshift).
|
|
|
|
///
|
|
|
|
/// The Xorshift algorithm is not suitable for cryptographic purposes
|
|
|
|
/// but is very fast. If you do not know for sure that it fits your
|
|
|
|
/// requirements, use a more secure one such as `IsaacRng`.
|
2013-04-26 08:23:49 -05:00
|
|
|
pub struct XorShiftRng {
|
2013-05-03 01:09:50 -05:00
|
|
|
priv x: u32,
|
|
|
|
priv y: u32,
|
|
|
|
priv z: u32,
|
|
|
|
priv w: u32,
|
2013-01-22 10:12:52 -06:00
|
|
|
}
|
2012-05-30 18:31:16 -05:00
|
|
|
|
2013-04-23 09:00:43 -05:00
|
|
|
impl Rng for XorShiftRng {
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-09-21 07:06:50 -05:00
|
|
|
fn next_u32(&mut self) -> u32 {
|
2012-05-30 18:31:16 -05:00
|
|
|
let x = self.x;
|
2013-04-12 00:10:01 -05:00
|
|
|
let t = x ^ (x << 11);
|
2012-05-30 18:31:16 -05:00
|
|
|
self.x = self.y;
|
|
|
|
self.y = self.z;
|
|
|
|
self.z = self.w;
|
|
|
|
let w = self.w;
|
|
|
|
self.w = w ^ (w >> 19) ^ (t ^ (t >> 8));
|
|
|
|
self.w
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl XorShiftRng {
|
2013-08-16 14:11:34 -05:00
|
|
|
/// Create an xor shift random number generator with a random seed.
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn new() -> XorShiftRng {
|
2013-08-14 20:41:40 -05:00
|
|
|
#[fixed_stack_segment]; #[inline(never)];
|
|
|
|
|
2013-09-21 06:32:57 -05:00
|
|
|
// generate seeds the same way as seed(), except we have a
|
|
|
|
// specific size, so we can just use a fixed buffer.
|
2013-08-16 14:11:34 -05:00
|
|
|
let mut s = [0u8, ..16];
|
|
|
|
loop {
|
2013-09-22 05:51:57 -05:00
|
|
|
let mut r = OSRng::new();
|
|
|
|
r.fill_bytes(s);
|
|
|
|
|
2013-08-16 14:11:34 -05:00
|
|
|
if !s.iter().all(|x| *x == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let s: &[u32, ..4] = unsafe { cast::transmute(&s) };
|
|
|
|
XorShiftRng::new_seeded(s[0], s[1], s[2], s[3])
|
2013-04-23 09:00:43 -05:00
|
|
|
}
|
2012-05-30 18:31:16 -05:00
|
|
|
|
2013-04-23 09:00:43 -05:00
|
|
|
/**
|
|
|
|
* Create a random number generator using the specified seed. A generator
|
2013-05-31 17:17:22 -05:00
|
|
|
* constructed with a given seed will generate the same sequence of values
|
|
|
|
* as all other generators constructed with the same seed.
|
2013-04-23 09:00:43 -05:00
|
|
|
*/
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn new_seeded(x: u32, y: u32, z: u32, w: u32) -> XorShiftRng {
|
2013-05-03 01:09:50 -05:00
|
|
|
XorShiftRng {
|
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
z: z,
|
|
|
|
w: w,
|
|
|
|
}
|
2013-04-23 09:00:43 -05:00
|
|
|
}
|
2013-04-26 08:23:49 -05:00
|
|
|
}
|
2012-05-30 18:31:16 -05:00
|
|
|
|
2013-09-21 06:32:57 -05:00
|
|
|
/// Create a new random seed of length `n`.
|
|
|
|
pub fn seed(n: uint) -> ~[u8] {
|
2013-09-22 05:51:57 -05:00
|
|
|
let mut s = vec::from_elem(n as uint, 0_u8);
|
|
|
|
let mut r = OSRng::new();
|
|
|
|
r.fill_bytes(s);
|
|
|
|
s
|
2013-04-23 09:00:43 -05:00
|
|
|
}
|
2012-10-01 22:29:34 -05:00
|
|
|
|
|
|
|
// used to make space in TLS for a random number generator
|
2013-09-26 04:08:44 -05:00
|
|
|
local_data_key!(tls_rng_state: @mut StdRng)
|
2012-10-01 22:29:34 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives back a lazily initialized task-local random number generator,
|
|
|
|
* seeded by the system. Intended to be used in method chaining style, ie
|
2013-04-24 07:29:19 -05:00
|
|
|
* `task_rng().gen::<int>()`.
|
2012-10-01 22:29:34 -05:00
|
|
|
*/
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-09-26 04:08:44 -05:00
|
|
|
pub fn task_rng() -> @mut StdRng {
|
2013-07-12 03:38:44 -05:00
|
|
|
let r = local_data::get(tls_rng_state, |k| k.map(|&k| *k));
|
2012-10-01 22:29:34 -05:00
|
|
|
match r {
|
|
|
|
None => {
|
2013-09-26 04:08:44 -05:00
|
|
|
let rng = @mut StdRng::new();
|
2013-07-12 03:38:44 -05:00
|
|
|
local_data::set(tls_rng_state, rng);
|
2013-09-26 04:08:44 -05:00
|
|
|
rng
|
2012-10-01 22:29:34 -05:00
|
|
|
}
|
2013-09-26 04:08:44 -05:00
|
|
|
Some(rng) => rng
|
2012-10-01 22:29:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-24 07:29:19 -05:00
|
|
|
// Allow direct chaining with `task_rng`
|
2013-06-18 13:54:00 -05:00
|
|
|
impl<R: Rng> Rng for @mut R {
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-09-21 07:06:50 -05:00
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
(**self).next_u32()
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
fn next_u64(&mut self) -> u64 {
|
|
|
|
(**self).next_u64()
|
2013-05-03 01:09:50 -05:00
|
|
|
}
|
2013-04-24 07:29:19 -05:00
|
|
|
}
|
|
|
|
|
2012-10-02 16:15:14 -05:00
|
|
|
/**
|
2013-04-21 07:09:33 -05:00
|
|
|
* Returns a random value of a Rand type, using the task's random number
|
|
|
|
* generator.
|
2012-10-02 16:15:14 -05:00
|
|
|
*/
|
2013-04-26 08:53:29 -05:00
|
|
|
#[inline]
|
2013-04-21 07:09:33 -05:00
|
|
|
pub fn random<T: Rand>() -> T {
|
2013-06-18 13:54:00 -05:00
|
|
|
task_rng().gen()
|
2012-10-02 16:15:14 -05:00
|
|
|
}
|
|
|
|
|
2012-01-17 21:05:07 -06:00
|
|
|
#[cfg(test)]
|
2013-07-22 13:43:12 -05:00
|
|
|
mod test {
|
2013-09-08 10:01:16 -05:00
|
|
|
use iter::{Iterator, range};
|
2013-03-26 15:38:07 -05:00
|
|
|
use option::{Option, Some};
|
2013-04-23 09:00:43 -05:00
|
|
|
use super::*;
|
2012-12-27 19:53:04 -06:00
|
|
|
|
2013-09-22 05:51:57 -05:00
|
|
|
#[test]
|
|
|
|
fn test_fill_bytes_default() {
|
|
|
|
let mut r = weak_rng();
|
|
|
|
|
|
|
|
let mut v = [0u8, .. 100];
|
|
|
|
r.fill_bytes(v);
|
|
|
|
}
|
|
|
|
|
2012-01-17 21:05:07 -06:00
|
|
|
#[test]
|
2013-09-20 06:47:05 -05:00
|
|
|
fn test_gen_integer_range() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
for _ in range(0, 1000) {
|
|
|
|
let a = r.gen_integer_range(-3i, 42);
|
|
|
|
assert!(a >= -3 && a < 42);
|
|
|
|
assert_eq!(r.gen_integer_range(0, 1), 0);
|
|
|
|
assert_eq!(r.gen_integer_range(-12, -11), -12);
|
|
|
|
}
|
|
|
|
|
|
|
|
for _ in range(0, 1000) {
|
|
|
|
let a = r.gen_integer_range(10, 42);
|
|
|
|
assert!(a >= 10 && a < 42);
|
|
|
|
assert_eq!(r.gen_integer_range(0, 1), 0);
|
|
|
|
assert_eq!(r.gen_integer_range(3_000_000u, 3_000_001), 3_000_000);
|
|
|
|
}
|
2012-05-19 13:25:45 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-20 06:47:05 -05:00
|
|
|
#[should_fail]
|
|
|
|
fn test_gen_integer_range_fail_int() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
r.gen_integer_range(5i, -2);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-09-20 06:47:05 -05:00
|
|
|
fn test_gen_integer_range_fail_uint() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
r.gen_integer_range(5u, 2u);
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-26 01:26:09 -05:00
|
|
|
fn test_gen_f64() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-26 01:26:09 -05:00
|
|
|
let a = r.gen::<f64>();
|
|
|
|
let b = r.gen::<f64>();
|
2013-09-27 19:02:31 -05:00
|
|
|
debug2!("{:?}", (a, b));
|
2012-05-17 13:52:49 -05:00
|
|
|
}
|
|
|
|
|
2012-05-19 13:25:45 -05:00
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_gen_weighted_bool() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(r.gen_weighted_bool(0u), true);
|
|
|
|
assert_eq!(r.gen_weighted_bool(1u), true);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
2012-05-17 13:52:49 -05:00
|
|
|
#[test]
|
2013-09-20 06:47:05 -05:00
|
|
|
fn test_gen_ascii_str() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-27 19:02:31 -05:00
|
|
|
debug2!("{}", r.gen_ascii_str(10u));
|
|
|
|
debug2!("{}", r.gen_ascii_str(10u));
|
|
|
|
debug2!("{}", r.gen_ascii_str(10u));
|
2013-09-20 06:47:05 -05:00
|
|
|
assert_eq!(r.gen_ascii_str(0u).len(), 0u);
|
|
|
|
assert_eq!(r.gen_ascii_str(10u).len(), 10u);
|
|
|
|
assert_eq!(r.gen_ascii_str(16u).len(), 16u);
|
2012-05-17 13:52:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-20 06:47:05 -05:00
|
|
|
fn test_gen_vec() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
assert_eq!(r.gen_vec::<u8>(0u).len(), 0u);
|
|
|
|
assert_eq!(r.gen_vec::<u8>(10u).len(), 10u);
|
|
|
|
assert_eq!(r.gen_vec::<f64>(16u).len(), 16u);
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
2012-05-19 13:25:45 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_choose() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(r.choose([1, 1, 1]), 1);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_choose_option() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-09-20 06:47:05 -05:00
|
|
|
let v: &[int] = &[];
|
|
|
|
assert!(r.choose_option(v).is_none());
|
|
|
|
|
|
|
|
let i = 1;
|
|
|
|
let v = [1,1,1];
|
|
|
|
assert_eq!(r.choose_option(v), Some(&i));
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_choose_weighted() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-05-23 11:39:17 -05:00
|
|
|
assert!(r.choose_weighted([
|
2013-04-23 09:00:43 -05:00
|
|
|
Weighted { weight: 1u, item: 42 },
|
2013-03-06 15:58:02 -06:00
|
|
|
]) == 42);
|
2013-05-23 11:39:17 -05:00
|
|
|
assert!(r.choose_weighted([
|
2013-04-23 09:00:43 -05:00
|
|
|
Weighted { weight: 0u, item: 42 },
|
|
|
|
Weighted { weight: 1u, item: 43 },
|
2013-03-06 15:58:02 -06:00
|
|
|
]) == 43);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_choose_weighted_option() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2013-05-23 11:39:17 -05:00
|
|
|
assert!(r.choose_weighted_option([
|
2013-04-23 09:00:43 -05:00
|
|
|
Weighted { weight: 1u, item: 42 },
|
2013-03-06 15:58:02 -06:00
|
|
|
]) == Some(42));
|
2013-05-23 11:39:17 -05:00
|
|
|
assert!(r.choose_weighted_option([
|
2013-04-23 09:00:43 -05:00
|
|
|
Weighted { weight: 0u, item: 42 },
|
|
|
|
Weighted { weight: 1u, item: 43 },
|
2013-03-06 15:58:02 -06:00
|
|
|
]) == Some(43));
|
2012-08-27 18:26:35 -05:00
|
|
|
let v: Option<int> = r.choose_weighted_option([]);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(v.is_none());
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_weighted_vec() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2012-06-29 18:26:56 -05:00
|
|
|
let empty: ~[int] = ~[];
|
2013-05-23 11:39:17 -05:00
|
|
|
assert_eq!(r.weighted_vec([]), empty);
|
|
|
|
assert!(r.weighted_vec([
|
2013-04-23 09:00:43 -05:00
|
|
|
Weighted { weight: 0u, item: 3u },
|
|
|
|
Weighted { weight: 1u, item: 2u },
|
|
|
|
Weighted { weight: 2u, item: 1u },
|
2013-03-06 15:58:02 -06:00
|
|
|
]) == ~[2u, 1u, 1u]);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_shuffle() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = rng();
|
2012-06-29 18:26:56 -05:00
|
|
|
let empty: ~[int] = ~[];
|
2013-09-20 06:47:05 -05:00
|
|
|
assert_eq!(r.shuffle(~[]), empty);
|
|
|
|
assert_eq!(r.shuffle(~[1, 1, 1]), ~[1, 1, 1]);
|
2012-05-19 13:25:45 -05:00
|
|
|
}
|
2012-10-01 22:48:33 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_task_rng() {
|
2013-05-07 19:57:58 -05:00
|
|
|
let mut r = task_rng();
|
2013-04-24 07:29:19 -05:00
|
|
|
r.gen::<int>();
|
2013-09-20 06:47:05 -05:00
|
|
|
assert_eq!(r.shuffle(~[1, 1, 1]), ~[1, 1, 1]);
|
|
|
|
assert_eq!(r.gen_integer_range(0u, 1u), 0u);
|
2012-10-01 22:48:33 -05:00
|
|
|
}
|
2012-10-02 16:15:14 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-04-23 09:00:43 -05:00
|
|
|
fn test_random() {
|
2013-04-21 07:09:33 -05:00
|
|
|
// not sure how to test this aside from just getting some values
|
2013-04-23 09:00:43 -05:00
|
|
|
let _n : uint = random();
|
|
|
|
let _f : f32 = random();
|
|
|
|
let _o : Option<Option<i8>> = random();
|
2013-04-22 04:01:48 -05:00
|
|
|
let _many : ((),
|
2013-09-03 18:24:12 -05:00
|
|
|
(~uint, @int, ~Option<~(@u32, ~(@bool,))>),
|
2013-04-22 04:01:48 -05:00
|
|
|
(u8, i8, u16, i16, u32, i32, u64, i64),
|
2013-09-26 01:26:09 -05:00
|
|
|
(f32, (f64, (f64,)))) = random();
|
2012-10-02 16:15:14 -05:00
|
|
|
}
|
2013-04-26 08:23:49 -05:00
|
|
|
|
2013-08-13 06:44:16 -05:00
|
|
|
#[test]
|
|
|
|
fn test_sample() {
|
|
|
|
let MIN_VAL = 1;
|
|
|
|
let MAX_VAL = 100;
|
|
|
|
|
|
|
|
let mut r = rng();
|
|
|
|
let vals = range(MIN_VAL, MAX_VAL).to_owned_vec();
|
|
|
|
let small_sample = r.sample(vals.iter(), 5);
|
|
|
|
let large_sample = r.sample(vals.iter(), vals.len() + 5);
|
|
|
|
|
|
|
|
assert_eq!(small_sample.len(), 5);
|
|
|
|
assert_eq!(large_sample.len(), vals.len());
|
|
|
|
|
|
|
|
assert!(small_sample.iter().all(|e| {
|
|
|
|
**e >= MIN_VAL && **e <= MAX_VAL
|
|
|
|
}));
|
|
|
|
}
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
2013-07-22 13:43:12 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod bench {
|
|
|
|
use extra::test::BenchHarness;
|
|
|
|
use rand::*;
|
|
|
|
use sys::size_of;
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn rand_xorshift(bh: &mut BenchHarness) {
|
|
|
|
let mut rng = XorShiftRng::new();
|
|
|
|
do bh.iter {
|
|
|
|
rng.gen::<uint>();
|
|
|
|
}
|
|
|
|
bh.bytes = size_of::<uint>() as u64;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn rand_isaac(bh: &mut BenchHarness) {
|
|
|
|
let mut rng = IsaacRng::new();
|
|
|
|
do bh.iter {
|
|
|
|
rng.gen::<uint>();
|
|
|
|
}
|
|
|
|
bh.bytes = size_of::<uint>() as u64;
|
|
|
|
}
|
|
|
|
|
2013-09-21 07:06:50 -05:00
|
|
|
#[bench]
|
|
|
|
fn rand_isaac64(bh: &mut BenchHarness) {
|
|
|
|
let mut rng = Isaac64Rng::new();
|
|
|
|
do bh.iter {
|
|
|
|
rng.gen::<uint>();
|
|
|
|
}
|
|
|
|
bh.bytes = size_of::<uint>() as u64;
|
|
|
|
}
|
|
|
|
|
2013-09-26 04:08:44 -05:00
|
|
|
#[bench]
|
|
|
|
fn rand_std(bh: &mut BenchHarness) {
|
|
|
|
let mut rng = StdRng::new();
|
|
|
|
do bh.iter {
|
|
|
|
rng.gen::<uint>();
|
|
|
|
}
|
|
|
|
bh.bytes = size_of::<uint>() as u64;
|
|
|
|
}
|
|
|
|
|
2013-07-22 13:43:12 -05:00
|
|
|
#[bench]
|
|
|
|
fn rand_shuffle_100(bh: &mut BenchHarness) {
|
|
|
|
let mut rng = XorShiftRng::new();
|
|
|
|
let x : &mut[uint] = [1,..100];
|
|
|
|
do bh.iter {
|
|
|
|
rng.shuffle_mut(x);
|
|
|
|
}
|
|
|
|
}
|
2013-08-01 02:16:42 -05:00
|
|
|
}
|