2019-01-30 22:39:55 +01:00
|
|
|
from gym.spaces.space import Space
|
2016-05-30 18:07:59 -07:00
|
|
|
from gym.spaces.box import Box
|
|
|
|
from gym.spaces.discrete import Discrete
|
2017-03-05 13:13:14 -08:00
|
|
|
from gym.spaces.multi_discrete import MultiDiscrete
|
2017-02-04 23:36:32 -08:00
|
|
|
from gym.spaces.multi_binary import MultiBinary
|
2016-05-30 18:07:59 -07:00
|
|
|
from gym.spaces.tuple_space import Tuple
|
2017-09-05 08:49:43 -07:00
|
|
|
from gym.spaces.dict_space import Dict
|
2016-04-27 08:00:58 -07:00
|
|
|
|
2019-01-30 22:39:55 +01:00
|
|
|
__all__ = ["Space", "Box", "Discrete", "MultiDiscrete", "MultiBinary", "Tuple", "Dict"]
|