-
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
refactor(lane_change): separate path-related function to utils/path #9633
refactor(lane_change): separate path-related function to utils/path #9633
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
0ac30be
to
43e731e
Compare
43e731e
to
007cef7
Compare
...or_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/utils.hpp
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/path.cpp
Outdated
Show resolved
Hide resolved
007cef7
to
df1ff38
Compare
...ior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/path.hpp
Outdated
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/path.cpp
Outdated
Show resolved
Hide resolved
cf4a8af
to
5e0df14
Compare
...or_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/utils.hpp
Outdated
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Show resolved
Hide resolved
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.
9ec1bf6
to
2647334
Compare
2647334
to
bfce3dd
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9633 +/- ##
==========================================
+ Coverage 29.73% 29.74% +0.01%
==========================================
Files 1448 1451 +3
Lines 108886 108805 -81
Branches 42746 42689 -57
==========================================
- Hits 32377 32368 -9
+ Misses 73325 73259 -66
+ Partials 3184 3178 -6
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
6e58c56
to
30d68eb
Compare
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/path.cpp
Outdated
Show resolved
Hide resolved
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
1005f52
to
8ecae27
Compare
5fa0141
into
autowarefoundation:main
…utowarefoundation#9633) * refactor(lane_change): separate path-related function to utils/path Signed-off-by: Zulfaqar Azmi <[email protected]> * remove old terminal lane change computation Signed-off-by: Zulfaqar Azmi <[email protected]> * doxygen comments Signed-off-by: Zulfaqar Azmi <[email protected]> * remove frenet planner header Signed-off-by: Zulfaqar Azmi <[email protected]> * minor refactoring by throwing instead Signed-off-by: Zulfaqar Azmi <[email protected]> * minor refactoring Signed-off-by: Zulfaqar Azmi <[email protected]> * fix docstring and remove redundant argument Signed-off-by: Zulfaqar Azmi <[email protected]> * get logger in header Signed-off-by: Zulfaqar Azmi <[email protected]> * add docstring Signed-off-by: Zulfaqar Azmi <[email protected]> * rename function is_colliding Signed-off-by: Zulfaqar Azmi <[email protected]> * Fix failing test Signed-off-by: Zulfaqar Azmi <[email protected]> * fix for failing scenario caused by prepare velocity Signed-off-by: Zulfaqar Azmi <[email protected]> * fix error message Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
…utowarefoundation#9633) * refactor(lane_change): separate path-related function to utils/path Signed-off-by: Zulfaqar Azmi <[email protected]> * remove old terminal lane change computation Signed-off-by: Zulfaqar Azmi <[email protected]> * doxygen comments Signed-off-by: Zulfaqar Azmi <[email protected]> * remove frenet planner header Signed-off-by: Zulfaqar Azmi <[email protected]> * minor refactoring by throwing instead Signed-off-by: Zulfaqar Azmi <[email protected]> * minor refactoring Signed-off-by: Zulfaqar Azmi <[email protected]> * fix docstring and remove redundant argument Signed-off-by: Zulfaqar Azmi <[email protected]> * get logger in header Signed-off-by: Zulfaqar Azmi <[email protected]> * add docstring Signed-off-by: Zulfaqar Azmi <[email protected]> * rename function is_colliding Signed-off-by: Zulfaqar Azmi <[email protected]> * Fix failing test Signed-off-by: Zulfaqar Azmi <[email protected]> * fix for failing scenario caused by prepare velocity Signed-off-by: Zulfaqar Azmi <[email protected]> * fix error message Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
Description
Move candidate path generator/constructor-related function to
utils/path.hpp/cpp
.If we planning on adding new path generation functions, utils.hpp/cpp file might be overcrowded. So for maintainability purpose, it is better to isolate these functions.
Related links
Parent Issue:
How was this PR tested?
TIER IV Internal link
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.