1 | #pragma once |
---|---|
2 | #include <pcg_random.hpp> |
3 | |
4 | /// Fairly good thread-safe random number generator, but probably slow-down thread creation a little. |
5 | extern thread_local pcg64 thread_local_rng; |
6 |
1 | #pragma once |
---|---|
2 | #include <pcg_random.hpp> |
3 | |
4 | /// Fairly good thread-safe random number generator, but probably slow-down thread creation a little. |
5 | extern thread_local pcg64 thread_local_rng; |
6 |