mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-25 15:59:06 +00:00
* 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
16 lines
471 B
Python
16 lines
471 B
Python
"""
|
|
Task is to reverse content over the input tape.
|
|
http://arxiv.org/abs/1511.07275
|
|
"""
|
|
|
|
from gym.envs.algorithmic import algorithmic_env
|
|
|
|
class ReverseEnv(algorithmic_env.TapeAlgorithmicEnv):
|
|
MIN_REWARD_SHORTFALL_FOR_PROMOTION = -.1
|
|
def __init__(self, base=2):
|
|
super(ReverseEnv, self).__init__(base=base, chars=True, starting_min_length=1)
|
|
self.last = 50
|
|
|
|
def target_from_input_data(self, input_str):
|
|
return list(reversed(input_str))
|