mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-23 15:04:20 +00:00
Modify Space.seed
such that the return can be used as seeding values (#1033)
This commit is contained in:
@@ -100,6 +100,7 @@ TESTING_COMPOSITE_SPACES = [
|
||||
b=Tuple((Box(-100, 100, shape=(2,)), Box(-100, 100, shape=(2,)))),
|
||||
),
|
||||
# Graph spaces
|
||||
Graph(node_space=Box(-1, 1, shape=(2,)), edge_space=None),
|
||||
Graph(node_space=Box(low=-100, high=100, shape=(3, 4)), edge_space=Discrete(5)),
|
||||
Graph(node_space=Discrete(5), edge_space=Box(low=-100, high=100, shape=(3, 4))),
|
||||
Graph(node_space=Discrete(3), edge_space=Discrete(4)),
|
||||
|
Reference in New Issue
Block a user