You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
between separate processes (they most likely used the same seed, since it is just time_t). A better seed should be used.
srand/rand are not thread safe in C so the behaviour probably isn't matching expectations
2a) the Lua math library uses srand/rand so it should also be addressed there.
the modulo operation does not generate uniformly distributed random numbers in the span (lower numbers are slightly more likely).
The text was updated successfully, but these errors were encountered:
There are a few issues:
2a) the Lua math library uses srand/rand so it should also be addressed there.
The text was updated successfully, but these errors were encountered: