AMDG
Diederick C. Niehorster wrote:
template<class Dist>
class CRandom
{
public:
<snip>
private:
boost::variate_generator<boost::mt19937,Dist> Gen;
};
This copies the engine. Try
boost::variate_generator<boost::mt19937&,Dist>
In Christ,
Steven Watanabe