forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
success to initialize AstarSearch instance
Signed-off-by: Takumi Ito <[email protected]>
- Loading branch information
Takumi Ito
committed
Jan 31, 2024
1 parent
b40c161
commit 86f8bc1
Showing
5 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 7 additions & 5 deletions
12
planning/freespace_planning_algorithms/scripts/parameter_tuning_tools/test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import sys | ||
|
||
sys.path.append("/home/takumiito/pilot-auto.freespace_param_tuning/build/freespace_planning_algorithms") | ||
# sys.path.append("/home/takumiito/pilot-auto.freespace_param_tuning/build/freespace_planning_algorithms") | ||
|
||
import freespace_planning_algorithms_python as fp | ||
import freespace_planning_algorithms.freespace_planning_algorithms_python as fp | ||
|
||
vehicle_shape = fp.VehicleShape(3, 2, 1) | ||
astar_param = fp.AstarParam | ||
planner_param = fp.PlannerCommonParam | ||
astar_param = fp.AstarParam() | ||
planner_param = fp.PlannerCommonParam() | ||
|
||
# astar = fp.AstarSearch(planner_param, vehicle_shape, astar_param) | ||
astar = fp.AstarSearch(planner_param, vehicle_shape, astar_param) | ||
|
||
print(astar) |