-
Notifications
You must be signed in to change notification settings - Fork 676
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(goal_planner): fix lane departure check not working correctly due to uninitialized variable #8449
fix(goal_planner): fix lane departure check not working correctly due to uninitialized variable #8449
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
339cfb4
to
70710b3
Compare
70710b3
to
dc8b47b
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8449 +/- ##
==========================================
- Coverage 23.85% 23.83% -0.02%
==========================================
Files 1379 1383 +4
Lines 101656 101658 +2
Branches 38669 38630 -39
==========================================
- Hits 24252 24234 -18
- Misses 74913 74966 +53
+ Partials 2491 2458 -33
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
… to uninitialized variable Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
dc8b47b
to
5ebdc8c
Compare
… to uninitialized variable (autowarefoundation#8449) Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
… to uninitialized variable (autowarefoundation#8449) Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> Signed-off-by: xtk8532704 <1041084556@qq.com>
… to uninitialized variable (autowarefoundation#8449) Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Description
With #7193,
createVehicleFootprints
must now have aparam_.footprint_extra_margin
argument. The change only applies to start planner, not goal planner. This PR adds that parameter to the goal planner as well.This uninitialized variable could cause
footprint_extra_margin
to benan
in some environments and lane departure checker to be incorrect As a result, all paths were judged as out of lane, and there was a bug that no candidate path was generated.before
after
Related links
launcher:
Parent Issue:
Private Links:
How was this PR tested?
2024/08/13 https://evaluation.tier4.jp/evaluation/reports/ce28c429-dedc-5b18-b103-74a0e3e2e57a/?project_id=prd_jt
3988/3990
https://evaluation.tier4.jp/evaluation/reports/tables/new?catalog_id=095ae8b3-a23b-4a08-8674-10a681449693&filter=&job_id=9d134b89-17f3-530c-bdee-31558fc970a5&project_id=prd_jt&table_config=date%2Ctotal%2Chide&target_ids=97f129f8-1237-53e4-bb37-4897e6fde01d
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.