Struct rand::distributions::WeightedChoice
[−]
[src]
pub struct WeightedChoice<'a, T> where
T: 'a, { /* fields omitted */ }
A distribution that selects from a finite collection of weighted items.
Each item has an associated weight that influences how likely it is to be chosen: higher weight is more likely.
The Clone
restriction is a limitation of the Sample
and
IndependentSample
traits. Note that &T
is (cheaply) Clone
for
all T
, as is u32
, so one can store references or indices into
another vector.
Example
use rand::distributions::{Weighted, WeightedChoice, IndependentSample}; let mut items = vec!(Weighted { weight: 2, item: 'a' }, Weighted { weight: 4, item: 'b' }, Weighted { weight: 1, item: 'c' }); let wc = WeightedChoice::new(&mut items); let mut rng = rand::thread_rng(); for _ in 0..16 { // on average prints 'a' 4 times, 'b' 8 and 'c' twice. println!("{}", wc.ind_sample(&mut rng)); }
Methods
impl<'a, T> WeightedChoice<'a, T> where
T: Clone,
[src]
T: Clone,
pub fn new(items: &'a mut [Weighted<T>]) -> WeightedChoice<'a, T>
[src]
Create a new WeightedChoice
.
Panics if:
items
is empty- the total weight is 0
- the total weight is larger than a
u32
can contain.
Trait Implementations
impl<'a, T> Debug for WeightedChoice<'a, T> where
T: 'a + Debug,
[src]
T: 'a + Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<'a, T> IndependentSample<T> for WeightedChoice<'a, T> where
T: Clone,
[src]
T: Clone,
fn ind_sample<R>(&self, rng: &mut R) -> T where
R: Rng,
[src]
R: Rng,
Generate a random value.
impl<'a, T> Sample<T> for WeightedChoice<'a, T> where
T: Clone,
[src]
T: Clone,