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

View File

@@ -17,7 +17,7 @@
// Derive and use this class.
struct MultiThink
{
MultiThink() : prng(21120903)
MultiThink() : prng(std::chrono::system_clock::now().time_since_epoch().count())
{
loop_count = 0;
}