This commit is contained in:
zhm-real
2020-06-30 15:34:45 -07:00
parent c2eb2b8f1c
commit b257e9f5b7
5 changed files with 10 additions and 8 deletions
+7 -5
View File
@@ -21,8 +21,10 @@
<component name="ChangeListManager">
<list default="true" id="025aff36-a6aa-4945-ab7e-b2c625055f47" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Search_3D/Astar3D.py" beforeDir="false" afterPath="$PROJECT_DIR$/Search_3D/Astar3D.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Search_3D/LRT_Astar3D.py" beforeDir="false" afterPath="$PROJECT_DIR$/Search_3D/LRT_Astar3D.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Search_2D/LRTAstar.py" beforeDir="false" afterPath="$PROJECT_DIR$/Search_2D/LRTAstar.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Search_2D/RTAAstar.py" beforeDir="false" afterPath="$PROJECT_DIR$/Search_2D/RTAAstar.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/gif/LRTA_star.gif" beforeDir="false" afterPath="$PROJECT_DIR$/gif/LRTA_star.gif" afterDir="false" />
<change beforePath="$PROJECT_DIR$/gif/RTAA_star.gif" beforeDir="false" afterPath="$PROJECT_DIR$/gif/RTAA_star.gif" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" />
@@ -68,7 +70,7 @@
</list>
</option>
</component>
<component name="RunManager" selected="Python.LRT_Astar3D">
<component name="RunManager" selected="Python.RTAAstar">
<configuration name="Astar3D" type="PythonConfigurationType" factoryName="Python" temporary="true">
<module name="Search-based Planning" />
<option name="INTERPRETER_OPTIONS" value="" />
@@ -205,10 +207,10 @@
</list>
<recent_temporary>
<list>
<item itemvalue="Python.LRT_Astar3D" />
<item itemvalue="Python.Astar3D" />
<item itemvalue="Python.RTAAstar" />
<item itemvalue="Python.LRTAstar" />
<item itemvalue="Python.LRT_Astar3D" />
<item itemvalue="Python.Astar3D" />
<item itemvalue="Python.LPAstar" />
</list>
</recent_temporary>
+1 -1
View File
@@ -180,7 +180,7 @@ def main():
x_start = (10, 5)
x_goal = (45, 25)
lrta = LrtAstarN(x_start, x_goal, 100, "euclidean")
lrta = LrtAstarN(x_start, x_goal, 150, "euclidean")
plot = plotting.Plotting(x_start, x_goal)
fig_name = "Learning Real-time A* (LRTA*)"
+2 -2
View File
@@ -107,7 +107,7 @@ class RtaAstar:
def Astar(self, x_start, N):
OPEN = queue.QueuePrior() # OPEN set
OPEN.put(x_start, self.h(x_start))
OPEN.put(x_start, self.h_table[x_start])
CLOSED = set() # CLOSED set
g_table = {x_start: 0, self.xG: float("inf")} # cost to come
PARENT = {x_start: x_start} # relations
@@ -190,7 +190,7 @@ def main():
x_start = (10, 5)
x_goal = (45, 25)
rtaa = RtaAstar(x_start, x_goal, 220, "euclidean")
rtaa = RtaAstar(x_start, x_goal, 150, "euclidean")
plot = plotting.Plotting(x_start, x_goal)
fig_name = "Real-time Adaptive A* (RTAA*)"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 160 KiB