Skip to content

Commit

Permalink
Fixed RIGHT/LEFT/DOWN/UP for Frozen Lake
Browse files Browse the repository at this point in the history
  • Loading branch information
hunkim authored and tlbtlbtlb committed Dec 25, 2016
1 parent 328ebc5 commit 63c4fb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gym/envs/toy_text/frozen_lake.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from gym import utils
from gym.envs.toy_text import discrete

UP = 0
RIGHT = 1
DOWN = 2
LEFT = 3
LEFT = 0
DOWN = 1
RIGHT = 2
UP = 3

MAPS = {
"4x4": [
Expand Down

0 comments on commit 63c4fb9

Please sign in to comment.