id summary reporter owner description type status milestone component version severity resolution keywords cc 9966 exponential_distribution returns negative zero mazzamuto@… No-Maintainer "The code below produces this output: 1.72296[[BR]] -0[[BR]] 0.295209[[BR]] 0.210905[[BR]] 0.930678[[BR]] {{{ #!c++ #include #include using namespace boost::random; using namespace std; int main() { ifstream mtfile; mtfile.open(""mt.dat""); //see attached file mt19937 mt; mtfile >> mt; mtfile.close(); for (int i = 0; i < 5; ++i) { cout << exponential_distribution(1.f)(mt) << endl; } return 0; } }}} " Bugs new To Be Determined random Boost 1.48.0 Problem