I am using a uniform_int_distribution in Boost 1.52 to generate random numbers using the basic boilerplate code:
#include <boost/random/mersenne_twister.hpp>
#include <boost/random/uniform_int_distribution.hpp>
boost::random::mt19937 gen;
int roll_die()
{
boost::random::uniform_int_distribution<> dist(1, 6);
return dist(gen);
}
int main()
{
for (int i = 0; i < 10; i++) std::cout << roll_die() << std::endl;
}
I implemented parts of this in a much larger project and it works great. Here is my question.
In the above function, it seems like the dist object is local to the function. If you call roll_die() many many times, it seems like having dist() be local to the function would introduce a lot of overhead.
I'm thinking it would be better to set the min and max parameters of this object once, and then only have one instance of dist in a bigger object or something. How does one do this? I tried to understand the "Public Member Functions" portion of the class template: http://www.boost.org/doc/libs/1_47_0/doc/html/boost/random/uniform_int_distribution.html#id744736-bb but it was over my head. In that documentation I see:
void param(const param_type & param); //Sets the parameters of the distribution.
How do you actually use this? Is .param() itself a function to call, or is it a stand-in for another function? I couldn't find another boost example that did what I'm asking. Thanks in advance for your assistance and advice!
uniform distributionclass only has two integers data members and all the constructor does is assign their values. Using a global object and setting the values each time will probably produce near identical code. – David Brown Jan 10 at 22:10