-
Notifications
You must be signed in to change notification settings - Fork 698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(freespace_planning_algorithm): modify A* script for standalone running #7070
chore(freespace_planning_algorithm): modify A* script for standalone running #7070
Conversation
a8b417b
to
bdcbe34
Compare
afbeae0
to
89f549a
Compare
bdf53a1
to
f717b46
Compare
move clearNoe() from setMap to makePlan(). Signed-off-by: Takumi Ito <takumi.ito@tier4.jp>
Signed-off-by: Takumi Ito <takumi.ito@tier4.jp>
f717b46
to
8533f0f
Compare
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Takumi Ito <takumi.ito@tier4.jp>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7070 +/- ##
==========================================
- Coverage 28.68% 28.66% -0.02%
==========================================
Files 1587 1593 +6
Lines 116304 116348 +44
Branches 49652 49653 +1
==========================================
Hits 33356 33356
- Misses 73892 73936 +44
Partials 9056 9056
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…running (autowarefoundation#7070) * modify astar for standalone running move clearNoe() from setMap to makePlan(). Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * small modification Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * run pre-commit Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> --------- Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> Co-authored-by: Takumi Ito <takumi.ito@tier4.jp> Signed-off-by: palas21 <palas21@itu.edu.tr>
…running (autowarefoundation#7070) * modify astar for standalone running move clearNoe() from setMap to makePlan(). Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * small modification Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * run pre-commit Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> --------- Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> Co-authored-by: Takumi Ito <takumi.ito@tier4.jp>
…running (#7070) * modify astar for standalone running move clearNoe() from setMap to makePlan(). Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * small modification Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * run pre-commit Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> --------- Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> Co-authored-by: Takumi Ito <takumi.ito@tier4.jp>
…running (autowarefoundation#7070) * modify astar for standalone running move clearNoe() from setMap to makePlan(). Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * small modification Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> * run pre-commit Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> --------- Signed-off-by: Takumi Ito <takumi.ito@tier4.jp> Co-authored-by: Takumi Ito <takumi.ito@tier4.jp>
Description
Modify A* script for standalone running.
When the A* algorithm runs via the freespace_planner node, the planner clears the A* node previously.
But when the makePlan() method in the A* node runs standalone (for example running via python wrapper), the node is not cleared.
I append clearNode() in makePlan().
Related links
Python wrapper of A* algorithms PR#6398
Tools for python wrapper autoware_tools PR#28
Evaluator: https://evaluation.tier4.jp/evaluation/reports/fbb9175f-1204-5605-a2fd-fbc995e6aaed?project_id=prd_jt
Interface changes
There are no changes in interfaces.
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.