Skip to content

Instantly share code, notes, and snippets.

@YannBerthelot
Created April 28, 2020 08:48
Show Gist options
  • Save YannBerthelot/2fd1ac66e40a66878e262593b284d080 to your computer and use it in GitHub Desktop.
Save YannBerthelot/2fd1ac66e40a66878e262593b284d080 to your computer and use it in GitHub Desktop.
execute
def execute(self, actions):
next_state = self.FlightModel.compute_timestep(actions)
terminal = self.terminal()
reward = self.reward()
return next_state, terminal, reward
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment