Files
Gymnasium/gym/spaces/__init__.py

8 lines
349 B
Python
Raw Normal View History

from gym.spaces.box import Box
from gym.spaces.discrete import Discrete
from gym.spaces.multi_discrete import MultiDiscrete, DiscreteToMultiDiscrete, BoxToMultiDiscrete
from gym.spaces.prng import seed
from gym.spaces.tuple_space import Tuple
2016-04-27 08:00:58 -07:00
__all__ = ["Box", "Discrete", "MultiDiscrete", "DiscreteToMultiDiscrete", "BoxToMultiDiscrete", "Tuple"]