Browse Source

Merge branch 'master' of https://github.com/zhm-real/path-planning-algorithms

# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
zhm-real 5 years ago
parent
commit
1e4f631ede
1 changed files with 5 additions and 1 deletions
  1. 5 1
      README.md

+ 5 - 1
README.md

@@ -11,10 +11,14 @@ Directory Structure
             ├── ARAstar.py                              # Anytime Reparing A*
             ├── IDAstar.py                              # Iteratively Deepening A*
             ├── LRTAstar.py                             # Learning Real-time A*
-            └── RTAAstar.py                             # Real-time Adaptive A*
+            ├── RTAAstar.py                             # Real-time Adaptive A*
+            ├── LPAstar.py                              # Lifelong Planning A*
+            ├── D_star.py                               # D* (Dynamic A*)
+            └── D_star_Lite.py                          # D* Lite
         └── Search_3D
             ├── Astar3D.py                              # A*_3D
             ├── bidirectional_Astar3D.py                # Bidirectional A*_3D
+            ├── RTA_Astar3D.py                          # Real-time Adaptive A*_3D
             └── LRT_Astar3D.py                          # Learning Real-time A*_3D
         └── gif                                         # Animations
     └── Sampling-based Planning