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
|
2019-03-25 00:28:23 +01:00
|
|
|
from gym.spaces.tuple import Tuple
|
|
|
|
from gym.spaces.dict import Dict
|
2016-04-27 08:00:58 -07:00
|
|
|
|
2019-03-24 19:29:43 +01:00
|
|
|
from gym.spaces.utils import flatdim
|
2020-05-08 23:19:55 +02:00
|
|
|
from gym.spaces.utils import flatten_space
|
2019-03-24 19:29:43 +01:00
|
|
|
from gym.spaces.utils import flatten
|
|
|
|
from gym.spaces.utils import unflatten
|
|
|
|
|
2020-05-08 23:19:55 +02:00
|
|
|
__all__ = ["Space", "Box", "Discrete", "MultiDiscrete", "MultiBinary", "Tuple", "Dict", "flatdim", "flatten_space", "flatten", "unflatten"]
|