-
Notifications
You must be signed in to change notification settings - Fork 668
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
fix(lane_change): use previous module drivable lanes in drivable are generation #3102
fix(lane_change): use previous module drivable lanes in drivable are generation #3102
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #3102 +/- ##
==========================================
- Coverage 11.88% 11.88% -0.01%
==========================================
Files 1336 1336
Lines 93190 93246 +56
Branches 24729 24767 +38
==========================================
Hits 11078 11078
- Misses 70632 70688 +56
Partials 11480 11480
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
1cb4881
to
9027e29
Compare
… generation Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
9027e29
to
37e3750
Compare
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
…generation (autowarefoundation#3102) fix(lane_change): use previous module drivable lanes in drivable area generation Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
…generation (autowarefoundation#3102) fix(lane_change): use previous module drivable lanes in drivable area generation Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Signed-off-by: Yusuke Mizoguchi <sky.y.m.318@gmail.com>
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
…generation (autowarefoundation#3102) fix(lane_change): use previous module drivable lanes in drivable area generation Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Description
In the new manager, multiple modules run simultaneously in series. (e.g. avoidance -> lane change) But, the drivable area which the previous module generated is always overwritten by next module. As a result, the output drivable area is inconsistent.
In the following scene, the avoidance module's drivable area is overwritten by lane change module at the moment of lane change execution.
In this PR, I fixed lane change drivable generation logic to use previous module's drivable lanes.
NOTE: For now, I fixed only lane change and avoidance module because the other modules are not able to execute simlutaneouly now.
Related links
Tests performed
Please set following flag to
FALSE
, and confirm to pass all build.autoware.universe/planning/behavior_path_planner/CMakeLists.txt
Line 10 in ad55953
simplescreenrecorder-2023-03-17_15.53.06.mp4
Notes for reviewers
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.