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