-
Notifications
You must be signed in to change notification settings - Fork 667
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
chore(build): remove tier4_autoware_utils.hpp evaluator/ simulator/ #4839
chore(build): remove tier4_autoware_utils.hpp evaluator/ simulator/ #4839
Conversation
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
28d1719
to
10d1f8c
Compare
WalkthroughThe changes involve removing the inclusion of Changes
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
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.
Files selected (10)
- evaluator/kinematic_evaluator/src/metrics/kinematic_metrics.cpp (1)
- evaluator/localization_evaluator/src/metrics/localization_metrics.cpp (1)
- evaluator/planning_evaluator/src/metrics/deviation_metrics.cpp (1)
- evaluator/planning_evaluator/src/metrics/metrics_utils.cpp (1)
- evaluator/planning_evaluator/src/metrics/obstacle_metrics.cpp (1)
- evaluator/planning_evaluator/src/metrics/stability_metrics.cpp (1)
- evaluator/planning_evaluator/src/metrics/trajectory_metrics.cpp (1)
- evaluator/planning_evaluator/src/metrics_calculator.cpp (1)
- simulator/dummy_perception_publisher/src/node.cpp (1)
- simulator/simple_planning_simulator/src/simple_planning_simulator/simple_planning_simulator_core.cpp (1)
Files skipped from review due to trivial changes (5)
- evaluator/kinematic_evaluator/src/metrics/kinematic_metrics.cpp
- evaluator/localization_evaluator/src/metrics/localization_metrics.cpp
- evaluator/planning_evaluator/src/metrics/deviation_metrics.cpp
- evaluator/planning_evaluator/src/metrics/obstacle_metrics.cpp
- evaluator/planning_evaluator/src/metrics/trajectory_metrics.cpp
Review comments generated (6)
- Review: 2
- LGTM: 4
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
@@ -14,13 +14,12 @@ | |||
|
|||
#include "planning_evaluator/metrics_calculator.hpp" | |||
|
|||
#include "motion_utils/motion_utils.hpp" | |||
#include "motion_utils/trajectory/trajectory.hpp" |
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.
#include "planning_evaluator/metrics/deviation_metrics.hpp" | ||
#include "planning_evaluator/metrics/obstacle_metrics.hpp" | ||
#include "planning_evaluator/metrics/stability_metrics.hpp" | ||
#include "planning_evaluator/metrics/trajectory_metrics.hpp" | ||
#include "tier4_autoware_utils/tier4_autoware_utils.hpp" | ||
|
||
#include "tier4_autoware_utils/geometry/geometry.hpp" |
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.
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
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
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #4839 +/- ##
=======================================
Coverage 15.12% 15.12%
=======================================
Files 1573 1573
Lines 108415 108415
Branches 33306 33306
=======================================
+ Hits 16395 16396 +1
Misses 74148 74148
+ Partials 17872 17871 -1
*This pull request uses carry forward flags. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@yukkysaito @tkimura4 @TakaHoribe Can you approve this PR ? |
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
Description
#4821
Tests performed
Not applicable.
Effects on system behavior
Not applicable.
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.
Summary by CodeRabbit
Release Notes:
tier4_autoware_utils/tier4_autoware_utils.hpp
header file and replaced it with specific headers in multiple files related to kinematic, localization, planning, and metrics calculations. This change improves modularity and reduces unnecessary dependencies.tier4_autoware_utils/tier4_autoware_utils.hpp
with appropriate headers in several files, ensuring correct functionality and compatibility with thetier4_autoware_utils
library.