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
std::default_random_engine is implementation defined, so different sequences are used on different platforms which is not ideal.
Most occurences were updated to use std::mt19937_64, the 64 bit mersenne twister implementation in the standard library, but there are currenlty 39 occurances in the test suite of the default being used (likely in PR's or based on tests from before the change to 64 bit mt was made).
These should be updated.
The text was updated successfully, but these errors were encountered:
std::default_random_engine
is implementation defined, so different sequences are used on different platforms which is not ideal.Most occurences were updated to use
std::mt19937_64
, the 64 bit mersenne twister implementation in the standard library, but there are currenlty 39 occurances in the test suite of the default being used (likely in PR's or based on tests from before the change to 64 bit mt was made).These should be updated.
The text was updated successfully, but these errors were encountered: