-
Notifications
You must be signed in to change notification settings - Fork 61
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(autoware_kalman_filter): rewrite using modern C++ without API breakage #346
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Yutaka Kondo <yutaka.kondo@youtalk.jp>
Signed-off-by: Yutaka Kondo <yutaka.kondo@youtalk.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #346 +/- ##
===========================================
- Coverage 78.75% 61.22% -17.53%
===========================================
Files 11 23 +12
Lines 193 1122 +929
Branches 73 441 +368
===========================================
+ Hits 152 687 +535
- Misses 11 397 +386
- Partials 30 38 +8
☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Signed-off-by: Yutaka Kondo <yutaka.kondo@youtalk.jp>
common/autoware_kalman_filter/include/autoware/kalman_filter/kalman_filter.hpp
Outdated
Show resolved
Hide resolved
Considering the impact on downstream, I decided not to add the |
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
While I think the update function should ideally be marked with [[nodiscard]], I understand that API compatibility was prioritized in this case.
Description
This PR includes refactoring to improve memory efficiency, readability and safety without breaking the API.
Related links
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.