Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
3k views

Using boost::random as the RNG for std::random_shuffle

I have a program that uses the mt19937 random number generator from boost::random. I need to do a random_shuffle and want the random numbers generated for this to be from this shared state so that ...
4
votes
2answers
737 views

Boost Mersenne Twister: how to seed with more than one value?

I'm using the boost mt19937 implementation for a simulation. The simulation needs to be reproducible, and that means storing and potentially reusing the RNG seeds later. I'm using the windows crypto ...
4
votes
3answers
491 views

Using boost::random to select from an std::list where elements are being removed

See this related question on more generic use of the Boost Random library. My questions involves selecting a random element from an std::list, doing some operation, which could potentally include ...
2
votes
1answer
36 views

Boost random::discrete_distribution How to change weights once constructed?

Ok, it is possible to give weights/probabilities in boost::random::discrete_distribution. e.g. double probabilities[] = { 0.5, 0.1, 0.1, 0.1, 0.1, 0.1 }; ...
2
votes
1answer
84 views

How bad rand from stdlib.h is?

I'm making a monte carlo simulation in C++ and I was using Boost for random numbers. I used GSL a bit too. But it turns out random number generation is one of my biggest runtime inefficiencies, so I ...
2
votes
1answer
301 views

standard multivariate normal random vector using Boost::random

I would like to generate random points on a 2D surface, distributed around a x0, y0 coordinate. I understand that what I need to generate is called "standard multivariate normal random vector", but ...
1
vote
0answers
89 views

random number using Normal distrubution in C++

As explained by John, I tried this: #include <boost/tr1/random.hpp> std::tr1::mt19937 eng; // a core engine class std::tr1::normal_distribution<double> dist; for (int i = 0; i < 10; ...
1
vote
1answer
81 views

How to initialize boost::random::discrete_distribution using std::vector?

I would like to initialize boost::random::discrete_distribution with an std::vector<double>. My problem is that if I initialize it with an array, like in the official example: double ...
1
vote
3answers
52 views

Initializing a member class of an object using a non-default constructor in C++

I have a specific situation where I've got an object that I want to use the boost random number generators on, and it has lead to a greater question which I cannot seem to answer. Here is the example ...
1
vote
6answers
481 views

Encapsulating boost::random for ease of usage to replace rand()

for my program I need pseudo random integers with different ranges. Until now I used the rand() function but it has it's limitations. I found the boost::random library to be a much better replacement ...
1
vote
2answers
563 views

How to generate random 64 bit ints with boost random

I'm trying to generate a random 64bit unsigned integer using boost random, but I'm getting an assertion failure with uniform_int. struct timeval tv; boost::mt19937 randGen(tval.tv_usec); ...
0
votes
1answer
159 views

Boost Random with templates

So I'm trying to use the Boost.Random mt19937 generator with templates. My c++ is a bit rusty, but from all I understand (and the doc, as always for Boost, is no less than vague) it should take a ...
0
votes
3answers
309 views

boost::random and boost:uniform_real works with doubles not with floats?

Pardon me if this has been discussed already. I've got a template function which uses boost::uniform_int and boost::uniform_real depending on the template argument and should return the same type: ...
0
votes
2answers
244 views

Boost random numbers - weird compilation error

In a simulation I'm writing I have a class that represents an Agent that must take some actions and I want this agent to have access to a random number generator. I heard boost rng's where good ones, ...
0
votes
1answer
328 views

Thread-safty of boost RNG

I have a loop which should be nicely pararellized by insering one openmp pragma: boost::normal_distribution<double> ddist(0, pow(retention, i - 1)); boost::variate_generator<gen &, ...