diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index d2d6fa2c56343..7a0c8f8893a39 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -178,7 +178,8 @@ planning/behavior_velocity_no_drivable_lane_module/** ahmed.ebrahim@leodrive.ai
planning/behavior_velocity_no_stopping_area_module/** kosuke.takeuchi@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
planning/behavior_velocity_occlusion_spot_module/** shumpei.wakabayashi@tier4.jp taiki.tanaka@tier4.jp tomoya.kimura@tier4.jp
planning/behavior_velocity_out_of_lane_module/** maxime.clement@tier4.jp shumpei.wakabayashi@tier4.jp takayuki.murooka@tier4.jp tomoya.kimura@tier4.jp
-planning/behavior_velocity_planner_common/** fumiya.watanabe@tier4.jp isamu.takagi@tier4.jp mamoru.sobue@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
+planning/autoware_behavior_velocity_planner_common/** fumiya.watanabe@tier4.jp isamu.takagi@tier4.jp mamoru.sobue@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
+planning/autoware_behavior_velocity_run_out_module/** kosuke.takeuchi@tier4.jp makoto.kurihara@tier4.jp shumpei.wakabayashi@tier4.jp takayuki.murooka@tier4.jp tomohito.ando@tier4.jp tomoya.kimura@tier4.jp
planning/behavior_velocity_speed_bump_module/** mdogru@leodrive.ai shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
planning/behavior_velocity_stop_line_module/** fumiya.watanabe@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp zhe.shen@tier4.jp
planning/behavior_velocity_traffic_light_module/** mamoru.sobue@tier4.jp satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
diff --git a/launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml b/launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml
index 4cf0c541510ed..779ee5c7af34a 100644
--- a/launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml
+++ b/launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml
@@ -101,7 +101,7 @@
diff --git a/planning/autoware_behavior_velocity_intersection_module/package.xml b/planning/autoware_behavior_velocity_intersection_module/package.xml
index 204a267594c03..401e53586c649 100644
--- a/planning/autoware_behavior_velocity_intersection_module/package.xml
+++ b/planning/autoware_behavior_velocity_intersection_module/package.xml
@@ -18,9 +18,9 @@
ament_cmake_auto
autoware_cmake
+ autoware_behavior_velocity_planner_common
autoware_perception_msgs
autoware_planning_msgs
- behavior_velocity_planner_common
fmt
geometry_msgs
interpolation
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/debug.cpp b/planning/autoware_behavior_velocity_intersection_module/src/debug.cpp
index 252d7c2a9f61e..ab09ca2e6e746 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/debug.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/debug.cpp
@@ -15,8 +15,8 @@
#include "scene_intersection.hpp"
#include "scene_merge_from_private_road.hpp"
-#include
-#include
+#include
+#include
#include
#include
@@ -45,7 +45,7 @@ visualization_msgs::msg::MarkerArray createLaneletPolygonsMarkerArray(
visualization_msgs::msg::MarkerArray msg;
int32_t i = 0;
- int32_t uid = behavior_velocity_planner::planning_utils::bitShift(lane_id);
+ int32_t uid = autoware::behavior_velocity_planner::planning_utils::bitShift(lane_id);
for (const auto & polygon : polygons) {
visualization_msgs::msg::Marker marker{};
marker.header.frame_id = "map";
@@ -224,7 +224,7 @@ constexpr std::tuple light_blue()
}
} // namespace
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using tier4_autoware_utils::appendMarkerArray;
using tier4_autoware_utils::createMarkerColor;
@@ -472,7 +472,7 @@ visualization_msgs::msg::MarkerArray MergeFromPrivateRoadModule::createDebugMark
const auto state = state_machine_.getState();
- int32_t uid = behavior_velocity_planner::planning_utils::bitShift(module_id_);
+ int32_t uid = autoware::behavior_velocity_planner::planning_utils::bitShift(module_id_);
const auto now = this->clock_->now();
if (state == StateMachine::State::STOP) {
appendMarkerArray(
@@ -496,4 +496,4 @@ motion_utils::VirtualWalls MergeFromPrivateRoadModule::createVirtualWalls()
}
return virtual_walls;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/decision_result.cpp b/planning/autoware_behavior_velocity_intersection_module/src/decision_result.cpp
index 0dc0e3aab4b87..5d1f1a1fcfca2 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/decision_result.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/decision_result.cpp
@@ -14,7 +14,7 @@
#include "decision_result.hpp"
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
std::string formatDecisionResult(const DecisionResult & decision_result)
{
@@ -65,4 +65,4 @@ std::string formatDecisionResult(const DecisionResult & decision_result)
return "";
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/decision_result.hpp b/planning/autoware_behavior_velocity_intersection_module/src/decision_result.hpp
index bf0b5520f7a32..26f78616a7b61 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/decision_result.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/decision_result.hpp
@@ -19,7 +19,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
@@ -172,6 +172,6 @@ using DecisionResult = std::variant<
std::string formatDecisionResult(const DecisionResult & decision_result);
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // DECISION_RESULT_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/interpolated_path_info.hpp b/planning/autoware_behavior_velocity_intersection_module/src/interpolated_path_info.hpp
index c855164e24d5b..d8bada002e37b 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/interpolated_path_info.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/interpolated_path_info.hpp
@@ -23,7 +23,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
@@ -43,6 +43,6 @@ struct InterpolatedPathInfo
std::optional> lane_id_interval{std::nullopt};
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // INTERPOLATED_PATH_INFO_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.cpp b/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.cpp
index bf833ee07c155..be7e9e25cc8bc 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.cpp
@@ -21,7 +21,7 @@
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
void IntersectionLanelets::update(
@@ -79,4 +79,4 @@ void IntersectionLanelets::update(
}
}
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.hpp b/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.hpp
index 3682787237d42..a7ca5eb3b0bc1 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/intersection_lanelets.hpp
@@ -27,7 +27,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
@@ -190,6 +190,6 @@ struct PathLanelets
// conflicting lanelets plus the next lane part of the
// path
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // INTERSECTION_LANELETS_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/intersection_stoplines.hpp b/planning/autoware_behavior_velocity_intersection_module/src/intersection_stoplines.hpp
index 85876ffc98380..98325f0aa8735 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/intersection_stoplines.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/intersection_stoplines.hpp
@@ -17,7 +17,7 @@
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
@@ -72,6 +72,6 @@ struct IntersectionStopLines
*/
size_t occlusion_wo_tl_pass_judge_line{0};
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // INTERSECTION_STOPLINES_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/manager.cpp b/planning/autoware_behavior_velocity_intersection_module/src/manager.cpp
index ac32ad553d2b7..8f540603791cb 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/manager.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/manager.cpp
@@ -14,8 +14,8 @@
#include "manager.hpp"
-#include
-#include
+#include
+#include
#include
#include
@@ -28,7 +28,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using tier4_autoware_utils::getOrDeclareParameter;
@@ -589,11 +589,12 @@ bool MergeFromPrivateModuleManager::hasSameParentLaneletAndTurnDirectionWithRegi
return false;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#include
PLUGINLIB_EXPORT_CLASS(
- behavior_velocity_planner::IntersectionModulePlugin, behavior_velocity_planner::PluginInterface)
+ autoware::behavior_velocity_planner::IntersectionModulePlugin,
+ autoware::behavior_velocity_planner::PluginInterface)
PLUGINLIB_EXPORT_CLASS(
- behavior_velocity_planner::MergeFromPrivateModulePlugin,
- behavior_velocity_planner::PluginInterface)
+ autoware::behavior_velocity_planner::MergeFromPrivateModulePlugin,
+ autoware::behavior_velocity_planner::PluginInterface)
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/manager.hpp b/planning/autoware_behavior_velocity_intersection_module/src/manager.hpp
index 7bbc8d51bbe9e..ecf6bb810f313 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/manager.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/manager.hpp
@@ -18,9 +18,9 @@
#include "scene_intersection.hpp"
#include "scene_merge_from_private_road.hpp"
-#include
-#include
-#include
+#include
+#include
+#include
#include
#include
@@ -32,7 +32,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
class IntersectionModuleManager : public SceneModuleManagerInterfaceWithRTC
{
@@ -90,6 +90,6 @@ class MergeFromPrivateModulePlugin : public PluginWrapper findPassageInterval(
lane_position, path, {enter_idx, exit_idx}, {object_enter_time, object_exit_time}};
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/object_manager.hpp b/planning/autoware_behavior_velocity_intersection_module/src/object_manager.hpp
index 3d1113656c3e3..0ba9947fdb318 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/object_manager.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/object_manager.hpp
@@ -52,7 +52,7 @@ struct hash
};
} // namespace std
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
@@ -287,6 +287,6 @@ std::optional findPassageInterval(
const std::optional & first_attention_lane_opt,
const std::optional & second_attention_lane_opt);
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // OBJECT_MANAGER_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/result.hpp b/planning/autoware_behavior_velocity_intersection_module/src/result.hpp
index da89920e59a85..1a833b268a5d8 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/result.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/result.hpp
@@ -18,7 +18,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
template
@@ -48,6 +48,6 @@ Result make_err(Args &&... args)
return Result(Error{std::forward(args)...});
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // RESULT_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.cpp
index 8e50c140894e7..beed0aab8e382 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.cpp
@@ -16,8 +16,8 @@
#include "util.hpp"
-#include // for toGeomPoly
-#include
+#include // for toGeomPoly
+#include
#include
#include
#include
@@ -38,7 +38,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -1412,4 +1412,4 @@ IntersectionModule::PassJudgeStatus IntersectionModule::isOverPassJudgeLinesStat
safely_passed_1st_judge_line_first_time, safely_passed_2nd_judge_line_first_time};
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.hpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.hpp
index b1cfcdee04fa6..e25f41a18028a 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection.hpp
@@ -22,8 +22,8 @@
#include "object_manager.hpp"
#include "result.hpp"
-#include
-#include
+#include
+#include
#include
#include
@@ -43,7 +43,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
class IntersectionModule : public SceneModuleInterface
@@ -818,6 +818,6 @@ class IntersectionModule : public SceneModuleInterface
rclcpp::Publisher::SharedPtr object_ttc_pub_;
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // SCENE_INTERSECTION_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_collision.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_collision.cpp
index 48387bc6aa398..fb06ed9d811c8 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_collision.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_collision.cpp
@@ -15,8 +15,8 @@
#include "scene_intersection.hpp"
#include "util.hpp"
-#include // for toGeomPoly
-#include // for smoothPath
+#include // for toGeomPoly
+#include // for smoothPath
#include
#include
#include
@@ -30,7 +30,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -964,4 +964,4 @@ IntersectionModule::TimeDistanceArray IntersectionModule::calcIntersectionPassin
return time_distance_array;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_occlusion.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_occlusion.cpp
index 0fb6042e5aadb..c43f8617897b9 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_occlusion.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_occlusion.cpp
@@ -25,7 +25,7 @@
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -449,4 +449,4 @@ IntersectionModule::OcclusionType IntersectionModule::detectOcclusion(
debug_data_.static_occlusion = true;
return StaticallyOccluded{min_dist};
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_prepare_data.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_prepare_data.cpp
index d4466c1e9431b..223e8eca84fe8 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_prepare_data.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_prepare_data.cpp
@@ -15,8 +15,8 @@
#include "scene_intersection.hpp"
#include "util.hpp"
-#include // for to_bg2d
-#include // for planning_utils::
+#include // for to_bg2d
+#include // for planning_utils::
#include
#include // for lanelet::autoware::RoadMarking
#include
@@ -106,7 +106,7 @@ std::optional> getFirstPoi
const auto & p = path.points.at(i).point.pose.position;
for (const auto & polygon : polygons) {
const auto polygon_2d = lanelet::utils::to2D(polygon);
- is_in_lanelet = bg::within(behavior_velocity_planner::to_bg2d(p), polygon_2d);
+ is_in_lanelet = bg::within(autoware::behavior_velocity_planner::to_bg2d(p), polygon_2d);
if (is_in_lanelet) {
return std::make_optional>(
i, polygon);
@@ -122,7 +122,7 @@ std::optional> getFirstPoi
const auto & p = path.points.at(i).point.pose.position;
for (const auto & polygon : polygons) {
const auto polygon_2d = lanelet::utils::to2D(polygon);
- is_in_lanelet = bg::within(behavior_velocity_planner::to_bg2d(p), polygon_2d);
+ is_in_lanelet = bg::within(autoware::behavior_velocity_planner::to_bg2d(p), polygon_2d);
if (is_in_lanelet) {
return std::make_optional>(
i, polygon);
@@ -157,7 +157,7 @@ double getHighestCurvature(const lanelet::ConstLineString3d & centerline)
} // namespace
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -907,4 +907,4 @@ std::vector IntersectionModule::generateDetectionLan
return detection_divisions;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp
index c7de1805327c3..eecb02d07c386 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_intersection_stuck.cpp
@@ -15,7 +15,7 @@
#include "scene_intersection.hpp"
#include "util.hpp"
-#include // for toGeomPoly
+#include // for toGeomPoly
#include
#include
@@ -114,7 +114,7 @@ lanelet::ConstLanelet createLaneletFromArcLength(
} // namespace
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -422,4 +422,4 @@ bool IntersectionModule::checkYieldStuckVehicleInIntersection(
}
return false;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.cpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.cpp
index be8d94c3b306d..1aaed779e1b79 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.cpp
@@ -16,8 +16,8 @@
#include "util.hpp"
-#include
-#include
+#include
+#include
#include
#include
#include
@@ -32,7 +32,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -206,4 +206,4 @@ lanelet::ConstLanelets MergeFromPrivateRoadModule::getAttentionLanelets() const
return attention_lanelets;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.hpp b/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.hpp
index 0b783cf2a7ebd..19e9ea44869ea 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/scene_merge_from_private_road.hpp
@@ -15,8 +15,8 @@
#ifndef SCENE_MERGE_FROM_PRIVATE_ROAD_HPP_
#define SCENE_MERGE_FROM_PRIVATE_ROAD_HPP_
-#include
-#include
+#include
+#include
#include
#include
@@ -35,7 +35,7 @@
* lanes before entering intersection
*/
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
class MergeFromPrivateRoadModule : public SceneModuleInterface
{
@@ -88,6 +88,6 @@ class MergeFromPrivateRoadModule : public SceneModuleInterface
// Debug
mutable DebugData debug_data_;
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
#endif // SCENE_MERGE_FROM_PRIVATE_ROAD_HPP_
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/util.cpp b/planning/autoware_behavior_velocity_intersection_module/src/util.cpp
index a083185786e42..09f16bcada3c1 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/util.cpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/util.cpp
@@ -16,9 +16,9 @@
#include "interpolated_path_info.hpp"
-#include
-#include
-#include
+#include
+#include
+#include
#include
#include
@@ -40,7 +40,7 @@
#include
#include
-namespace behavior_velocity_planner::util
+namespace autoware::behavior_velocity_planner::util
{
namespace bg = boost::geometry;
@@ -399,4 +399,4 @@ std::vector getPolygon3dFromLanelets(
return polys;
}
-} // namespace behavior_velocity_planner::util
+} // namespace autoware::behavior_velocity_planner::util
diff --git a/planning/autoware_behavior_velocity_intersection_module/src/util.hpp b/planning/autoware_behavior_velocity_intersection_module/src/util.hpp
index 27200e663503d..ef826380afa69 100644
--- a/planning/autoware_behavior_velocity_intersection_module/src/util.hpp
+++ b/planning/autoware_behavior_velocity_intersection_module/src/util.hpp
@@ -30,7 +30,7 @@
#include
#include
-namespace behavior_velocity_planner::util
+namespace autoware::behavior_velocity_planner::util
{
/**
@@ -141,6 +141,6 @@ getFirstPointInsidePolygonsByFootprint(
std::vector getPolygon3dFromLanelets(
const lanelet::ConstLanelets & ll_vec);
-} // namespace behavior_velocity_planner::util
+} // namespace autoware::behavior_velocity_planner::util
#endif // UTIL_HPP_
diff --git a/planning/autoware_behavior_velocity_planner/package.xml b/planning/autoware_behavior_velocity_planner/package.xml
index c90d4d01cbca5..4d5dc17264df0 100644
--- a/planning/autoware_behavior_velocity_planner/package.xml
+++ b/planning/autoware_behavior_velocity_planner/package.xml
@@ -34,11 +34,11 @@
rosidl_default_generators
+ autoware_behavior_velocity_planner_common
autoware_map_msgs
autoware_perception_msgs
autoware_planning_msgs
autoware_velocity_smoother
- behavior_velocity_planner_common
diagnostic_msgs
eigen
geometry_msgs
diff --git a/planning/autoware_behavior_velocity_planner/src/node.cpp b/planning/autoware_behavior_velocity_planner/src/node.cpp
index ffbc4ef9174dc..59049ef7f07f3 100644
--- a/planning/autoware_behavior_velocity_planner/src/node.cpp
+++ b/planning/autoware_behavior_velocity_planner/src/node.cpp
@@ -14,8 +14,8 @@
#include "node.hpp"
+#include
#include
-#include
#include
#include
#include
@@ -439,14 +439,14 @@ autoware_planning_msgs::msg::Path BehaviorVelocityPlannerNode::generatePath(
// screening
const auto filtered_path =
- ::behavior_velocity_planner::filterLitterPathPoint(to_path(velocity_planned_path));
+ autoware::behavior_velocity_planner::filterLitterPathPoint(to_path(velocity_planned_path));
// interpolation
- const auto interpolated_path_msg = ::behavior_velocity_planner::interpolatePath(
+ const auto interpolated_path_msg = autoware::behavior_velocity_planner::interpolatePath(
filtered_path, forward_path_length_, behavior_output_path_interval_);
// check stop point
- output_path_msg = ::behavior_velocity_planner::filterStopPathPoint(interpolated_path_msg);
+ output_path_msg = autoware::behavior_velocity_planner::filterStopPathPoint(interpolated_path_msg);
output_path_msg.header.frame_id = "map";
output_path_msg.header.stamp = this->now();
diff --git a/planning/autoware_behavior_velocity_planner/src/node.hpp b/planning/autoware_behavior_velocity_planner/src/node.hpp
index 62ceef5f04ea6..b2157bfb818ce 100644
--- a/planning/autoware_behavior_velocity_planner/src/node.hpp
+++ b/planning/autoware_behavior_velocity_planner/src/node.hpp
@@ -20,7 +20,7 @@
#include
#include
-#include
+#include
#include
#include
@@ -49,7 +49,6 @@ namespace autoware::behavior_velocity_planner
using autoware_behavior_velocity_planner::srv::LoadPlugin;
using autoware_behavior_velocity_planner::srv::UnloadPlugin;
using autoware_map_msgs::msg::LaneletMapBin;
-using ::behavior_velocity_planner::TrafficSignalStamped;
using tier4_planning_msgs::msg::VelocityLimit;
class BehaviorVelocityPlannerNode : public rclcpp::Node
diff --git a/planning/autoware_behavior_velocity_planner/src/planner_manager.cpp b/planning/autoware_behavior_velocity_planner/src/planner_manager.cpp
index f462fc963f17b..93209a10180be 100644
--- a/planning/autoware_behavior_velocity_planner/src/planner_manager.cpp
+++ b/planning/autoware_behavior_velocity_planner/src/planner_manager.cpp
@@ -50,7 +50,8 @@ diagnostic_msgs::msg::DiagnosticStatus makeStopReasonDiag(
} // namespace
BehaviorVelocityPlannerManager::BehaviorVelocityPlannerManager()
-: plugin_loader_("autoware_behavior_velocity_planner", "behavior_velocity_planner::PluginInterface")
+: plugin_loader_(
+ "autoware_behavior_velocity_planner", "autoware::behavior_velocity_planner::PluginInterface")
{
}
diff --git a/planning/autoware_behavior_velocity_planner/src/planner_manager.hpp b/planning/autoware_behavior_velocity_planner/src/planner_manager.hpp
index 9e7f2942bb067..73193a002918d 100644
--- a/planning/autoware_behavior_velocity_planner/src/planner_manager.hpp
+++ b/planning/autoware_behavior_velocity_planner/src/planner_manager.hpp
@@ -15,8 +15,8 @@
#ifndef PLANNER_MANAGER_HPP_
#define PLANNER_MANAGER_HPP_
-#include
-#include
+#include
+#include
#include
#include
@@ -38,8 +38,6 @@
namespace autoware::behavior_velocity_planner
{
-using ::behavior_velocity_planner::PlannerData;
-using ::behavior_velocity_planner::PluginInterface;
class BehaviorVelocityPlannerManager
{
diff --git a/planning/autoware_behavior_velocity_planner/test/src/test_node_interface.cpp b/planning/autoware_behavior_velocity_planner/test/src/test_node_interface.cpp
index 2e971ed238751..cdff8af4ac56e 100644
--- a/planning/autoware_behavior_velocity_planner/test/src/test_node_interface.cpp
+++ b/planning/autoware_behavior_velocity_planner/test/src/test_node_interface.cpp
@@ -68,21 +68,21 @@ std::shared_ptr generateNode()
};
std::vector module_names;
- module_names.emplace_back("behavior_velocity_planner::CrosswalkModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::CrosswalkModulePlugin");
module_names.emplace_back("autoware::behavior_velocity_planner::WalkwayModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::TrafficLightModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::TrafficLightModulePlugin");
module_names.emplace_back("autoware::behavior_velocity_planner::IntersectionModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::MergeFromPrivateModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::BlindSpotModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::DetectionAreaModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::MergeFromPrivateModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::BlindSpotModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::DetectionAreaModulePlugin");
module_names.emplace_back("autoware::behavior_velocity_planner::VirtualTrafficLightModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::NoStoppingAreaModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::StopLineModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::OcclusionSpotModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::NoStoppingAreaModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::StopLineModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::OcclusionSpotModulePlugin");
module_names.emplace_back("autoware::behavior_velocity_planner::RunOutModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::SpeedBumpModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::OutOfLaneModulePlugin");
- module_names.emplace_back("behavior_velocity_planner::NoDrivableLaneModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::SpeedBumpModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::OutOfLaneModulePlugin");
+ module_names.emplace_back("autoware::behavior_velocity_planner::NoDrivableLaneModulePlugin");
std::vector params;
params.emplace_back("launch_modules", module_names);
diff --git a/planning/behavior_velocity_planner_common/CMakeLists.txt b/planning/autoware_behavior_velocity_planner_common/CMakeLists.txt
similarity index 93%
rename from planning/behavior_velocity_planner_common/CMakeLists.txt
rename to planning/autoware_behavior_velocity_planner_common/CMakeLists.txt
index c8847164851e8..9cb992312f52a 100644
--- a/planning/behavior_velocity_planner_common/CMakeLists.txt
+++ b/planning/autoware_behavior_velocity_planner_common/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
-project(behavior_velocity_planner_common)
+project(autoware_behavior_velocity_planner_common)
find_package(autoware_cmake REQUIRED)
autoware_package()
diff --git a/planning/behavior_velocity_planner_common/README.md b/planning/autoware_behavior_velocity_planner_common/README.md
similarity index 100%
rename from planning/behavior_velocity_planner_common/README.md
rename to planning/autoware_behavior_velocity_planner_common/README.md
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/planner_data.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/planner_data.hpp
similarity index 93%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/planner_data.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/planner_data.hpp
index 51511b94f3e33..907683998dd29 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/planner_data.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/planner_data.hpp
@@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
#include "route_handler/route_handler.hpp"
+#include
#include
-#include
#include
#include
@@ -45,7 +45,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
class BehaviorVelocityPlannerNode;
struct PlannerData
@@ -148,6 +148,6 @@ struct PlannerData
return std::make_optional(traffic_light_id_map.at(id));
}
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLANNER_DATA_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_interface.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_interface.hpp
similarity index 75%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_interface.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_interface.hpp
index dcdb4a7052cc0..86579f06790b2 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_interface.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_interface.hpp
@@ -12,17 +12,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
-#include
+#include
#include
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
class PluginInterface
@@ -38,6 +38,6 @@ class PluginInterface
virtual const char * getModuleName() = 0;
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_INTERFACE_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_wrapper.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_wrapper.hpp
similarity index 78%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_wrapper.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_wrapper.hpp
index abb14dd8b2356..e82211937e55b 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/plugin_wrapper.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/plugin_wrapper.hpp
@@ -12,15 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
-#include
+#include
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
template
@@ -48,6 +48,6 @@ class PluginWrapper : public PluginInterface
std::unique_ptr scene_manager_;
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__PLUGIN_WRAPPER_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/scene_module_interface.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/scene_module_interface.hpp
similarity index 95%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/scene_module_interface.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/scene_module_interface.hpp
index 3e7992207f3f1..53b6e064d73b4 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/scene_module_interface.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/scene_module_interface.hpp
@@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
-#include
+#include
#include
#include
#include
@@ -45,7 +45,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using builtin_interfaces::msg::Time;
@@ -276,6 +276,6 @@ class SceneModuleManagerInterfaceWithRTC : public SceneModuleManagerInterface
}
};
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__SCENE_MODULE_INTERFACE_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/arc_lane_util.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/arc_lane_util.hpp
similarity index 94%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/arc_lane_util.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/arc_lane_util.hpp
index c9d292536ac13..5ea1ae9fffcc1 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/arc_lane_util.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/arc_lane_util.hpp
@@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
-#include
+#include
#include
#include
@@ -27,7 +27,7 @@
#define EIGEN_MPL2_ONLY
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace
{
@@ -195,6 +195,6 @@ std::optional createTargetPoint(
const size_t lane_id, const double margin, const double vehicle_offset);
} // namespace arc_lane_utils
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__ARC_LANE_UTIL_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp
similarity index 88%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp
index bf238ecad55cb..22bba2b90dcc2 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/boost_geometry_helper.hpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
#include
@@ -46,7 +46,7 @@ BOOST_GEOMETRY_REGISTER_POINT_3D(
autoware_planning_msgs::msg::TrajectoryPoint, double, cs::cartesian, pose.position.x,
pose.position.y, pose.position.z)
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
@@ -77,6 +77,6 @@ Polygon2d upScalePolygon(
geometry_msgs::msg::Polygon toGeomPoly(const Polygon2d & polygon);
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__BOOST_GEOMETRY_HELPER_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/debug.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/debug.hpp
similarity index 86%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/debug.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/debug.hpp
index ab44af265fbaa..c6e5d45ec4eb6 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/debug.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/debug.hpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
#include
@@ -26,7 +26,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace debug
{
@@ -47,5 +47,5 @@ visualization_msgs::msg::MarkerArray createPointsMarkerArray(
const int64_t module_id, const rclcpp::Time & now, const double x, const double y, const double z,
const double r, const double g, const double b);
} // namespace debug
-} // namespace behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
+} // namespace autoware::behavior_velocity_planner
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__DEBUG_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/path_utilization.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/path_utilization.hpp
similarity index 78%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/path_utilization.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/path_utilization.hpp
index 55a82db1ae390..e9bccc42e1dc4 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/path_utilization.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/path_utilization.hpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
#include
@@ -22,7 +22,7 @@
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
bool splineInterpolate(
const tier4_planning_msgs::msg::PathWithLaneId & input, const double interval,
@@ -33,6 +33,6 @@ autoware_planning_msgs::msg::Path filterLitterPathPoint(
const autoware_planning_msgs::msg::Path & path);
autoware_planning_msgs::msg::Path filterStopPathPoint(
const autoware_planning_msgs::msg::Path & path);
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__PATH_UTILIZATION_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/state_machine.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/state_machine.hpp
similarity index 87%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/state_machine.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/state_machine.hpp
index 73b0fa7d553a3..12dd4db930745 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/state_machine.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/state_machine.hpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
#include
@@ -21,7 +21,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
/**
* @brief Manage stop-go states with safety margin time.
@@ -92,5 +92,5 @@ class StateMachine
std::shared_ptr start_time_; //! first time received GO when STOP state
};
-} // namespace behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
+} // namespace autoware::behavior_velocity_planner
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__STATE_MACHINE_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/trajectory_utils.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/trajectory_utils.hpp
similarity index 76%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/trajectory_utils.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/trajectory_utils.hpp
index 2aadb7883a857..c5040f055c243 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/trajectory_utils.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/trajectory_utils.hpp
@@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
-#include
+#include
#include
#include
@@ -26,7 +26,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using autoware_planning_msgs::msg::Trajectory;
using autoware_planning_msgs::msg::TrajectoryPoint;
@@ -40,6 +40,6 @@ bool smoothPath(
const PathWithLaneId & in_path, PathWithLaneId & out_path,
const std::shared_ptr & planner_data);
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__TRAJECTORY_UTILS_HPP_
diff --git a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/util.hpp b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/util.hpp
similarity index 93%
rename from planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/util.hpp
rename to planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/util.hpp
index 4ef4bb91a295d..2fe728847b8f2 100644
--- a/planning/behavior_velocity_planner_common/include/behavior_velocity_planner_common/utilization/util.hpp
+++ b/planning/autoware_behavior_velocity_planner_common/include/autoware_behavior_velocity_planner_common/utilization/util.hpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#ifndef BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
-#define BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
+#ifndef AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
+#define AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
#include
@@ -35,7 +35,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
struct DetectionRange
{
@@ -155,11 +155,13 @@ std::unordered_map, lanelet::ConstLanelet> get
std::vector unique_lane_ids;
if (nearest_lane_id) {
// Add subsequent lane_ids from nearest lane_id
- unique_lane_ids = behavior_velocity_planner::planning_utils::getSubsequentLaneIdsSetOnPath(
- path, *nearest_lane_id);
+ unique_lane_ids =
+ autoware::behavior_velocity_planner::planning_utils::getSubsequentLaneIdsSetOnPath(
+ path, *nearest_lane_id);
} else {
// Add all lane_ids in path
- unique_lane_ids = behavior_velocity_planner::planning_utils::getSortedLaneIdsFromPath(path);
+ unique_lane_ids =
+ autoware::behavior_velocity_planner::planning_utils::getSortedLaneIdsFromPath(path);
}
for (const auto lane_id : unique_lane_ids) {
@@ -239,6 +241,6 @@ lanelet::ConstLanelets getConstLaneletsFromIds(
}
} // namespace planning_utils
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
-#endif // BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
+#endif // AUTOWARE_BEHAVIOR_VELOCITY_PLANNER_COMMON__UTILIZATION__UTIL_HPP_
diff --git a/planning/behavior_velocity_planner_common/package.xml b/planning/autoware_behavior_velocity_planner_common/package.xml
similarity index 93%
rename from planning/behavior_velocity_planner_common/package.xml
rename to planning/autoware_behavior_velocity_planner_common/package.xml
index ba847d8b1f853..524387034e4b6 100644
--- a/planning/behavior_velocity_planner_common/package.xml
+++ b/planning/autoware_behavior_velocity_planner_common/package.xml
@@ -1,9 +1,9 @@
- behavior_velocity_planner_common
+ autoware_behavior_velocity_planner_common
0.1.0
- The behavior_velocity_planner_common package
+ The autoware_behavior_velocity_planner_common package
Tomoya Kimura
Shumpei Wakabayashi
diff --git a/planning/behavior_velocity_planner_common/src/scene_module_interface.cpp b/planning/autoware_behavior_velocity_planner_common/src/scene_module_interface.cpp
similarity index 97%
rename from planning/behavior_velocity_planner_common/src/scene_module_interface.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/scene_module_interface.cpp
index 3092d33418c8b..94cef496f4f75 100644
--- a/planning/behavior_velocity_planner_common/src/scene_module_interface.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/scene_module_interface.cpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
-#include
+#include
+#include
#include
#include
#include
@@ -21,7 +21,7 @@
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using tier4_autoware_utils::StopWatch;
@@ -281,4 +281,4 @@ void SceneModuleManagerInterfaceWithRTC::deleteExpiredModules(
}
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp
similarity index 94%
rename from planning/behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp
index e5705b1367e0e..d7e88f5f33901 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/arc_lane_util.cpp
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
+#include
#include
#include
@@ -62,7 +62,7 @@ return p * v;
*/
} // namespace
-namespace behavior_velocity_planner::arc_lane_utils
+namespace autoware::behavior_velocity_planner::arc_lane_utils
{
double calcSignedDistance(const geometry_msgs::msg::Pose & p1, const geometry_msgs::msg::Point & p2)
@@ -134,4 +134,4 @@ std::optional createTargetPoint(
const auto front_idx = offset_segment->first;
return std::make_pair(front_idx, target_pose);
}
-} // namespace behavior_velocity_planner::arc_lane_utils
+} // namespace autoware::behavior_velocity_planner::arc_lane_utils
diff --git a/planning/behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp
similarity index 91%
rename from planning/behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp
index 903cf5aab80e8..50f7cd269a904 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/boost_geometry_helper.cpp
@@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
+#include
#include
#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
Polygon2d lines2polygon(const LineString2d & left_line, const LineString2d & right_line)
@@ -63,4 +63,4 @@ geometry_msgs::msg::Polygon toGeomPoly(const Polygon2d & polygon)
}
return polygon_msg;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/src/utilization/debug.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/debug.cpp
similarity index 94%
rename from planning/behavior_velocity_planner_common/src/utilization/debug.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/debug.cpp
index 00d746c56db85..a8e6828a048ae 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/debug.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/debug.cpp
@@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
-#include
+#include
+#include
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace debug
{
@@ -124,4 +124,4 @@ visualization_msgs::msg::MarkerArray createPointsMarkerArray(
return msg;
}
} // namespace debug
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/src/utilization/path_utilization.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/path_utilization.cpp
similarity index 96%
rename from planning/behavior_velocity_planner_common/src/utilization/path_utilization.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/path_utilization.cpp
index fe956e9be9512..eb17242c06b1e 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/path_utilization.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/path_utilization.cpp
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
+#include
#include
#include
#include
@@ -23,7 +23,7 @@
constexpr double DOUBLE_EPSILON = 1e-6;
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
bool splineInterpolate(
const tier4_planning_msgs::msg::PathWithLaneId & input, const double interval,
@@ -168,4 +168,4 @@ autoware_planning_msgs::msg::Path filterStopPathPoint(
}
return filtered_path;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp
similarity index 93%
rename from planning/behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp
index ecc314bca2009..4d2ef59886ba7 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/trajectory_utils.cpp
@@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-// #include
+// #include
#include "motion_utils/trajectory/conversion.hpp"
+#include
#include
-#include
#include
#include
@@ -33,7 +33,7 @@
#include
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
using autoware_planning_msgs::msg::Trajectory;
using autoware_planning_msgs::msg::TrajectoryPoint;
@@ -89,4 +89,4 @@ bool smoothPath(
return true;
}
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/src/utilization/util.cpp b/planning/autoware_behavior_velocity_planner_common/src/utilization/util.cpp
similarity index 97%
rename from planning/behavior_velocity_planner_common/src/utilization/util.cpp
rename to planning/autoware_behavior_velocity_planner_common/src/utilization/util.cpp
index b724d01346f1e..4578676aeeee7 100644
--- a/planning/behavior_velocity_planner_common/src/utilization/util.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/src/utilization/util.cpp
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include
-#include
+#include
+#include
#include
#include
@@ -89,7 +89,7 @@ geometry_msgs::msg::Pose transformRelCoordinate2D(
} // namespace
-namespace behavior_velocity_planner
+namespace autoware::behavior_velocity_planner
{
namespace planning_utils
{
@@ -545,11 +545,13 @@ std::vector getLaneletsOnPath(
std::vector unique_lane_ids;
if (nearest_lane_id) {
// Add subsequent lane_ids from nearest lane_id
- unique_lane_ids = behavior_velocity_planner::planning_utils::getSubsequentLaneIdsSetOnPath(
- path, *nearest_lane_id);
+ unique_lane_ids =
+ autoware::behavior_velocity_planner::planning_utils::getSubsequentLaneIdsSetOnPath(
+ path, *nearest_lane_id);
} else {
// Add all lane_ids in path
- unique_lane_ids = behavior_velocity_planner::planning_utils::getSortedLaneIdsFromPath(path);
+ unique_lane_ids =
+ autoware::behavior_velocity_planner::planning_utils::getSortedLaneIdsFromPath(path);
}
std::vector lanelets;
@@ -692,4 +694,4 @@ std::set getAssociativeIntersectionLanelets(
}
} // namespace planning_utils
-} // namespace behavior_velocity_planner
+} // namespace autoware::behavior_velocity_planner
diff --git a/planning/behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp b/planning/autoware_behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp
similarity index 93%
rename from planning/behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp
rename to planning/autoware_behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp
index fb2418ba9c829..b835aa0034ec4 100644
--- a/planning/behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/test/src/test_arc_lane_util.cpp
@@ -14,17 +14,18 @@
#include "utils.hpp"
-#include
-#include
+#include
+#include
#include
#include
-using PathIndexWithPoint2d = behavior_velocity_planner::arc_lane_utils::PathIndexWithPoint2d;
-using LineString2d = behavior_velocity_planner::LineString2d;
-using Point2d = behavior_velocity_planner::Point2d;
-namespace arc_lane_utils = behavior_velocity_planner::arc_lane_utils;
+using PathIndexWithPoint2d =
+ autoware::behavior_velocity_planner::arc_lane_utils::PathIndexWithPoint2d;
+using LineString2d = autoware::behavior_velocity_planner::LineString2d;
+using Point2d = autoware::behavior_velocity_planner::Point2d;
+namespace arc_lane_utils = autoware::behavior_velocity_planner::arc_lane_utils;
namespace
{
@@ -121,7 +122,7 @@ TEST(findOffsetSegment, case_backward_offset_segment)
TEST(checkCollision, various_cases)
{
- using behavior_velocity_planner::arc_lane_utils::checkCollision;
+ using autoware::behavior_velocity_planner::arc_lane_utils::checkCollision;
constexpr double epsilon = 1e-6;
{ // normal case with collision
diff --git a/planning/behavior_velocity_planner_common/test/src/test_state_machine.cpp b/planning/autoware_behavior_velocity_planner_common/test/src/test_state_machine.cpp
similarity index 92%
rename from planning/behavior_velocity_planner_common/test/src/test_state_machine.cpp
rename to planning/autoware_behavior_velocity_planner_common/test/src/test_state_machine.cpp
index ac7c6655ced87..fe6a1e00496b1 100644
--- a/planning/behavior_velocity_planner_common/test/src/test_state_machine.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/test/src/test_state_machine.cpp
@@ -14,7 +14,7 @@
#include "utils.hpp"
-#include
+#include
#include
#include
@@ -23,8 +23,8 @@
#include
#include
-using StateMachine = behavior_velocity_planner::StateMachine;
-using State = behavior_velocity_planner::StateMachine::State;
+using StateMachine = autoware::behavior_velocity_planner::StateMachine;
+using State = autoware::behavior_velocity_planner::StateMachine::State;
int enumToInt(State s)
{
diff --git a/planning/behavior_velocity_planner_common/test/src/test_utilization.cpp b/planning/autoware_behavior_velocity_planner_common/test/src/test_utilization.cpp
similarity index 92%
rename from planning/behavior_velocity_planner_common/test/src/test_utilization.cpp
rename to planning/autoware_behavior_velocity_planner_common/test/src/test_utilization.cpp
index fbc5f5d709c5c..5e6c92b662820 100644
--- a/planning/behavior_velocity_planner_common/test/src/test_utilization.cpp
+++ b/planning/autoware_behavior_velocity_planner_common/test/src/test_utilization.cpp
@@ -15,9 +15,9 @@
#include "motion_utils/trajectory/trajectory.hpp"
#include "utils.hpp"
-#include