Home | Trees | Indices | Help |
|
---|
|
File wrapping maze.py functionality into few methods defined by OpenAI GYM
Author: Zdeněk Rozsypálek
Contact: rozsyzde(at)fel.cvut.cz
Copyright: (c) 2017
|
|||
MazeEnv | |||
EnvAgent Class necessary for wrapping maze |
|||
EasyMazeEnv EasyMazeEnv is version of maze closer to graph search. |
|||
InfEasyMaze informed easy maze, suitable for A* implementation step([x, y]) |
|||
EasyMaze uninformed easy maze, suitable for BFS, DFS ... |
|||
HardMaze Uninformed hard maze, suitable for reinforcement learning step(param) where param is integer; 0 <= param <= 3 |
|||
InfHardMaze Informed hard maze, suitable for reinforcement learning step(param) where param is integer; 0 <= param <= 3 |
|
|||
path_section = collections.namedtuple('Path', ['state_from', '
|
|||
state = collections.namedtuple('State', ['x', 'y'])
|
|
path_section
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Feb 28 12:51:03 2018 | http://epydoc.sourceforge.net |