Defines a multi-core random number generator and its operators.
More...
#include <rnd.h>
|
void | set_seed (unsigned int seed) |
|
int | rnd_int (int lowerLimit, int upperLimit) |
|
float | rnd_flt (float min=0.0, float max=1.0) |
|
float | rnd_dbl (float min=0.0, float max=1.0) |
|
float | operator() (unsigned i) |
|
float | operator() () |
|
template<class RandomAccessIterator> |
void | shuffle (RandomAccessIterator first, RandomAccessIterator last) |
|
vector< size_t > | shuffled_index (size_t n) |
| returns a shuffled index vector of length n
|
|
template<typename Iter> |
Iter | select_randomly (Iter start, Iter end) |
|
template<typename Iter, typename Iter2> |
Iter | select_randomly (Iter start, Iter end, Iter2 wstart, Iter2 wend) |
| select randomly with weighted distribution.
|
|
template<typename T> |
T | random_choice (const map< T, float > &m) |
|
template<class V, class T> |
T | random_choice (const V &v) |
|
template<template< class, class > class C, class T> |
T | random_choice (const C< T, std::allocator< T > > &v, const vector< float > &w) |
|
float | gasdev () |
|
Defines a multi-core random number generator and its operators.
Definition at line 28 of file rnd.h.
◆ Rnd()
Brush::Util::Rnd::Rnd |
( |
| ) |
|
|
private |
need a random generator for each core to do multiprocessing. The constructor will resize the random generators based on the number of available cores.
Definition at line 12 of file rnd.cpp.
◆ ~Rnd()
Brush::Util::Rnd::~Rnd |
( |
| ) |
|
|
private |
◆ destroy()
void Brush::Util::Rnd::destroy |
( |
| ) |
|
|
static |
◆ gasdev()
float Brush::Util::Rnd::gasdev |
( |
| ) |
|
◆ initRand()
Rnd * Brush::Util::Rnd::initRand |
( |
| ) |
|
|
static |
◆ operator()() [1/2]
float Brush::Util::Rnd::operator() |
( |
| ) |
|
◆ operator()() [2/2]
float Brush::Util::Rnd::operator() |
( |
unsigned | i | ) |
|
◆ random_choice() [1/3]
template<template< class, class > class C, class T>
T Brush::Util::Rnd::random_choice |
( |
const C< T, std::allocator< T > > & | v, |
|
|
const vector< float > & | w ) |
|
inline |
return a weighted random element of an STL container
Definition at line 128 of file rnd.h.
◆ random_choice() [2/3]
template<typename T>
T Brush::Util::Rnd::random_choice |
( |
const map< T, float > & | m | ) |
|
|
inline |
return a weighted random key of a map, where the values are weights.
Definition at line 96 of file rnd.h.
◆ random_choice() [3/3]
template<class V, class T>
T Brush::Util::Rnd::random_choice |
( |
const V & | v | ) |
|
|
inline |
return a random element of a vector.
Definition at line 117 of file rnd.h.
◆ rnd_dbl()
float Brush::Util::Rnd::rnd_dbl |
( |
float | min = 0.0, |
|
|
float | max = 1.0 ) |
◆ rnd_flt()
float Brush::Util::Rnd::rnd_flt |
( |
float | min = 0.0, |
|
|
float | max = 1.0 ) |
◆ rnd_int()
int Brush::Util::Rnd::rnd_int |
( |
int | lowerLimit, |
|
|
int | upperLimit ) |
◆ select_randomly() [1/2]
Iter Brush::Util::Rnd::select_randomly |
( |
Iter | start, |
|
|
Iter | end ) |
|
inline |
Definition at line 61 of file rnd.h.
◆ select_randomly() [2/2]
template<typename
Iter, typename Iter2>
Iter Brush::Util::Rnd::select_randomly |
( |
Iter | start, |
|
|
Iter | end, |
|
|
Iter2 | wstart, |
|
|
Iter2 | wend ) |
|
inline |
select randomly with weighted distribution.
Definition at line 73 of file rnd.h.
◆ set_seed()
void Brush::Util::Rnd::set_seed |
( |
unsigned int | seed | ) |
|
set seeds for each core's random number generator.
Definition at line 46 of file rnd.cpp.
◆ shuffle()
template<class RandomAccessIterator>
void Brush::Util::Rnd::shuffle |
( |
RandomAccessIterator | first, |
|
|
RandomAccessIterator | last ) |
|
inline |
Definition at line 49 of file rnd.h.
◆ shuffled_index()
vector< size_t > Brush::Util::Rnd::shuffled_index |
( |
size_t | n | ) |
|
returns a shuffled index vector of length n
Definition at line 121 of file rnd.cpp.
◆ instance
Rnd * Brush::Util::Rnd::instance = NULL |
|
staticprivate |
◆ rg
vector<std::mt19937> Brush::Util::Rnd::rg |
|
private |
The documentation for this class was generated from the following files: