diff options
Diffstat (limited to 'random.h')
-rw-r--r-- | random.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ inline double randomN() { static std::uniform_real_distribution<double> distribution (0.0, 1.0); - static std::mt19937 generator; + static std::mt19937 generator (std::random_device{}()); return distribution(generator); } |