make a single random generator for NTSim
We have many numpy.random.*
calls in our code, which makes the result non-reproducable (one cannot set the seed for all of them).
I suggest to make ntsim.random
module which would contain an instance of numpy.RandomGenerator
, and use it everywhere instead of direct np.random.*
functions.