|
Algorithm 1 Hybrid A* |
|
Input:
: Start and goal configuration
grid : Grid
: Obstacles
-
1:
procedure HA*
-
2:
-
3:
▹ add state to the cell’s list
-
4:
-
5:
-
6:
while
do
-
7:
-
8:
if
then
-
9:
return
▹ Solution found
-
10:
end if
-
11:
-
12:
for each
do
-
13:
if
then
-
14:
-
15:
-
16:
end if
-
17:
end for
-
18:
end while
-
19:
return
∅
-
20:
end procedure
|