-
Notifications
You must be signed in to change notification settings - Fork 683
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): do not cancel when approaching terminal start #8381
fix(lane_change): do not cancel when approaching terminal start #8381
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
775c85e
to
e2be56d
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8381 +/- ##
==========================================
- Coverage 23.90% 23.77% -0.14%
==========================================
Files 1380 1381 +1
Lines 101759 101777 +18
Branches 38713 38697 -16
==========================================
- Hits 24328 24193 -135
- Misses 74947 75161 +214
+ Partials 2484 2423 -61
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Code looks good. I only have a small question and a small request.
...ng/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/calculation.cpp
Outdated
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/interface.cpp
Show resolved
Hide resolved
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
a27ae47
to
9b59c68
Compare
02abe1e
into
autowarefoundation:main
…warefoundation#8381) * do not cancel if ego vehicle approaching terminal start Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * Insert stop point if object is coming from rear Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * minor edit to fix conflict Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * rename function Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> --------- Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
…warefoundation#8381) * do not cancel if ego vehicle approaching terminal start Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * Insert stop point if object is coming from rear Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * minor edit to fix conflict Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * rename function Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> --------- Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: xtk8532704 <1041084556@qq.com>
Description
Lane change module will cancel unsafe path unless ego has passed terminal start point.
However, as ego vehicle approaching terminal end, cancelling lane change path might result in difficulties in re-attempting lane change.
This PR aims to fix this, by not cancelling lane change if ego has already near terminal start.
Related links
None
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.