How can I get a randomly initialized RNG that is “independent” of Base.Random.GLOBAL_RNG (in the sense that I can use them in different threads in parallel)?
I thought of MersenneTwister(), but that is deprecated without an argument.
Is
srand(copy(Base.Random.GLOBAL_RNG))
the way to do it?