Skip to content

Instantly share code, notes, and snippets.

@msaroufim
Created October 27, 2019 23:18
Show Gist options
  • Save msaroufim/3a59550023c09161132be1817abd4337 to your computer and use it in GitHub Desktop.
Save msaroufim/3a59550023c09161132be1817abd4337 to your computer and use it in GitHub Desktop.
# Deterministic policy that is solving the problem
mutable struct BasicCarPolicy <: Reinforce.AbstractPolicy end
Reinforce.action(policy::BasicCarPolicy, r, s, A) = s.velocity < 0 ? 1 : 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment