Fix newline in Windows.
[PaGMO.git] / Functions / rng / rng.h
blob46f9e4f6f61ca5d775f07dc9ae43722ceced5d9b
1 #ifndef PAGMO_RNG_H
2 #define PAGMO_RNG_H
4 #include <boost/random/lagged_fibonacci.hpp>
5 #include <boost/random/mersenne_twister.hpp>
7 // This rng returns an unsigned integer in the [0,2**32-1] range.
8 typedef boost::mt19937 rng_uint32_type;
9 // This rng returns a double in the [0,1] range.
10 typedef boost::lagged_fibonacci607 rng_double_type;
12 #endif