From 4227150757f9273634f768ed22a6feee6a4b2514 Mon Sep 17 00:00:00 2001 From: Huiming Zhou <64300713+zhm-real@users.noreply.github.com> Date: Sun, 28 Jun 2020 21:01:01 -0700 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3df3654..117a8de 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,13 @@ Directory Structure ├── bidirectional_Astar3D.py # Bidirectional A*_3D └── LRT_Astar3D.py # Learning Real-time A*_3D └── gif # Animations + └── Sampling-based Planning + └── rrt_2D + ├── rrt.py # rrt : goal-biased rrt + └── rrt_star.py + └── rrt_3D + ├── rrt3D.py # rrt3D : goal-biased rrt3D + └── rrtstar3D.py └── Stochastic Shortest Path ├── value_iteration.py # value iteration ├── policy_iteration.py # policy iteration @@ -24,13 +31,6 @@ Directory Structure └── Model-free Control ├── Sarsa.py # SARSA : on-policy TD control └── Q-learning.py # Q-learning : off-policy TD control - └── Sampling-based Planning - └── rrt_2D - ├── rrt.py # rrt : goal-biased rrt - └── rrt_star.py - └── rrt_3D - ├── rrt3D.py # rrt3D : goal-biased rrt3D - └── rrtstar3D.py ## Animations ### DFS & BFS (Dijkstra)