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
|
Cleanup, removal of unmaintained code (#836)
* add dtype to Box
* remove board_game, debugging, safety, parameter_tuning environments
* massive set of breaking changes
- remove python logging module
- _step, _reset, _seed, _close => non underscored method
- remove benchmark and scoring folder
* Improve render("human"), now resizable, closable window.
* get rid of default step and reset in wrappers, so it doesn’t silently fail for people with underscore methods
* CubeCrash unit test environment
* followup fixes
* MemorizeDigits unit test envrionment
* refactored spaces a bit
fixed indentation
disabled test_env_semantics
* fix unit tests
* fixes
* CubeCrash, MemorizeDigits tested
* gym backwards compatibility patch
* gym backwards compatibility, followup fixes
* changelist, add spaces to main namespaces
* undo_logger_setup for backwards compat
* remove configuration.py
2018-01-25 18:20:14 -08:00
|
|
|
from gym.spaces.prng import seed, np_random
|
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
|
|
|
|
2017-09-05 08:49:43 -07:00
|
|
|
__all__ = ["Box", "Discrete", "MultiDiscrete", "MultiBinary", "Tuple", "Dict"]
|