Merge branch 'main' into fix-types-1

This commit is contained in:
blessedcoolant 2023-07-24 19:52:46 +12:00 committed by GitHub
commit 9c59083406
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,4 +18,5 @@ SEED_MAX = np.iinfo(np.uint32).max
def get_random_seed():
return np.random.randint(0, SEED_MAX)
rng = np.random.default_rng(seed=0)
return int(rng.integers(0, SEED_MAX))