-
Notifications
You must be signed in to change notification settings - Fork 673
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
refactor(goal planner): hold modified_goal in PullOverPath ,copy modified goal once from background thread #9006
refactor(goal planner): hold modified_goal in PullOverPath ,copy modified goal once from background thread #9006
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
343627a
to
35da99a
Compare
e071c74
to
01a9424
Compare
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
01a9424
to
1422490
Compare
size_t id() const { return id_; } | ||
Pose start_pose() const { return start_pose_; } | ||
Pose end_pose() const { return end_pose_; } | ||
Pose end_pose() const { return modified_goal_pose_.goal_pose; } |
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.
This PR makes the end pose and goal pose coincide, so the end pose is no longer necessary.
(Previously, the end of the shift was the end pose only for shift pull over.)
It appears that the end pose can be eliminated entirely.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9006 +/- ##
==========================================
- Coverage 26.52% 26.50% -0.02%
==========================================
Files 1296 1300 +4
Lines 95711 95768 +57
Branches 38974 38975 +1
==========================================
Hits 25383 25383
- Misses 67721 67778 +57
Partials 2607 2607
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…fied goal once from background thread (autowarefoundation#9006) refactor(goal_planner): save modified_goal_pose in PullOverPlannerBase Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> Signed-off-by: prakash-kannaiah <prakashkanan.pk@gmail.com>
Description
depends #8994
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.