We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def __init__(self, env_init, shuffle_chronics=True): check_gym_version() self.init_env = env_init.copy() self.action_space = GymActionSpace(self.init_env) self.observation_space = GymObservationSpace(self.init_env) self.reward_range = self.init_env.reward_range self.metadata = self.init_env.metadata self._shuffle_chronics = shuffle_chronics if GYM_VERSION <= _MAX_GYM_VERSION_RANDINT: self.seed = self._aux_seed ######### HERE self.reset = self._aux_reset self.step = self._aux_step else: self.reset = self._aux_reset_new self.step = self._aux_step_new
The text was updated successfully, but these errors were encountered:
fixing issue rte-france#407
6f98634
done and available in version 1.9.0
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: