mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-22 15:11:51 +00:00
Update vector space utility functions for all spaces (#223)
This commit is contained in:
7
tests/experimental/vector/utils/utils.py
Normal file
7
tests/experimental/vector/utils/utils.py
Normal file
@@ -0,0 +1,7 @@
|
||||
"""Utility functions for testing the vector utility functions."""
|
||||
import numpy as np
|
||||
|
||||
|
||||
def is_rng_equal(rng_1: np.random.Generator, rng_2: np.random.Generator):
|
||||
"""Asserts that two random number generates are equivalent."""
|
||||
return rng_1.bit_generator.state == rng_2.bit_generator.state
|
Reference in New Issue
Block a user