Changed to specify the current tick as a random seed. #68

This commit is contained in:
nodchip
2020-08-10 12:09:21 +09:00
parent 643be3c6f9
commit e65c515d6b
+1 -1
View File
@@ -17,7 +17,7 @@
// Derive and use this class. // Derive and use this class.
struct MultiThink struct MultiThink
{ {
MultiThink() : prng(21120903) MultiThink() : prng(std::chrono::system_clock::now().time_since_epoch().count())
{ {
loop_count = 0; loop_count = 0;
} }