Skip to content

Instantly share code, notes, and snippets.

@msaroufim
Created October 28, 2019 00:23
Show Gist options
  • Save msaroufim/29a6d8d079a9df3a5525d80f65f8ebc5 to your computer and use it in GitHub Desktop.
Save msaroufim/29a6d8d079a9df3a5525d80f65f8ebc5 to your computer and use it in GitHub Desktop.
const min_position = -1.2
const max_position = 0.6
const max_speed = 0.07
const goal_position = 0.5
const min_start = -0.6
const max_start = 0.4
const car_width = 0.05
const car_height = car_width/2.0
const clearance = 0.2*car_height
const flag_height = 0.05
mutable struct MountainCarState
position::Float64
velocity::Float64
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment