Dear list users,
I have attached a reduced case of what I want to do. Basically, I
thought it would be a good idea to have one general number generator
that I attach to specific distributions in my member functions according
to my needs (uniform_01 in this example, but I also want to use others).
So for example I do the following in my real code, where 'rng' is my
static member object:
typedef boost::lagged_fibonacci607 rand_gen;
boost::bernoulli_distribution<double> b_dist(p);
boost::variate_generator