Skip to content

Commit 73969a1

Browse files
authored
refactor(behavior_path_planner): prefix autoware_ to behavior_path_planner package (autowarefoundation#7433)
* move dir Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> * fix pluginlib Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> --------- Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 6667484 commit 73969a1

File tree

93 files changed

+42
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+42
-41
lines changed

launch/tier4_planning_launch/launch/scenario_planning/lane_driving/behavior_planning/behavior_planning.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
<let name="behavior_velocity_planner_launch_modules" value="$(eval &quot;'$(var behavior_velocity_planner_launch_modules)' + '$(var launch_module_list_end)'&quot;)"/>
177177

178178
<node_container pkg="rclcpp_components" exec="$(var container_type)" name="behavior_planning_container" namespace="" args="" output="both">
179-
<composable_node pkg="behavior_path_planner" plugin="behavior_path_planner::BehaviorPathPlannerNode" name="behavior_path_planner" namespace="">
179+
<composable_node pkg="autoware_behavior_path_planner" plugin="behavior_path_planner::BehaviorPathPlannerNode" name="behavior_path_planner" namespace="">
180180
<!-- topic remap -->
181181
<remap from="~/input/route" to="$(var input_route_topic_name)"/>
182182
<remap from="~/input/vector_map" to="$(var input_vector_map_topic_name)"/>

planning/.pages

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
nav:
22
- 'Introduction': planning
33
- 'Behavior Path Planner':
4-
- 'About Behavior Path': planning/behavior_path_planner
4+
- 'About Behavior Path': planning/autoware_behavior_path_planner
55
- 'Concept':
6-
- 'Planner Manager': planning/behavior_path_planner/docs/behavior_path_planner_manager_design
7-
- 'Scene Module Interface': planning/behavior_path_planner/docs/behavior_path_planner_interface_design
6+
- 'Planner Manager': planning/autoware_behavior_path_planner/docs/behavior_path_planner_manager_design
7+
- 'Scene Module Interface': planning/autoware_behavior_path_planner/docs/behavior_path_planner_interface_design
88
- 'Path Generation': planning/autoware_behavior_path_planner_common/docs/behavior_path_planner_path_generation_design
99
- 'Collision Assessment/Safety Check': planning/autoware_behavior_path_planner_common/docs/behavior_path_planner_safety_check
1010
- 'Dynamic Drivable Area': planning/autoware_behavior_path_planner_common/docs/behavior_path_planner_drivable_area_design
1111
- 'Turn Signal': planning/autoware_behavior_path_planner_common/docs/behavior_path_planner_turn_signal_design
1212
- 'Scene Module':
1313
- 'Avoidance by Lane Change': planning/autoware_behavior_path_avoidance_by_lane_change_module
1414
- 'Dynamic Obstacle Avoidance': planning/autoware_behavior_path_dynamic_obstacle_avoidance_module
15-
- 'Goal Planner': planning/behavior_path_goal_planner_module
15+
- 'Goal Planner': planning/autoware_behavior_path_goal_planner_module
1616
- 'Lane Change': planning/autoware_behavior_path_lane_change_module
1717
- 'Side Shift': planning/autoware_behavior_path_side_shift_module
1818
- 'Start Planner': planning/autoware_behavior_path_start_planner_module

planning/autoware_behavior_path_avoidance_by_lane_change_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_avoidance_by_lane_change_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/scene.cpp

planning/autoware_behavior_path_avoidance_by_lane_change_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2020

2121
<depend>autoware_behavior_path_lane_change_module</depend>
22+
<depend>autoware_behavior_path_planner</depend>
2223
<depend>autoware_behavior_path_planner_common</depend>
2324
<depend>autoware_behavior_path_static_obstacle_avoidance_module</depend>
2425
<depend>autoware_rtc_interface</depend>
25-
<depend>behavior_path_planner</depend>
2626
<depend>lanelet2_extension</depend>
2727
<depend>motion_utils</depend>
2828
<depend>pluginlib</depend>

planning/autoware_behavior_path_avoidance_by_lane_change_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include <ament_index_cpp/get_package_share_directory.hpp>
1818
#include <autoware_planning_test_manager/autoware_planning_test_manager.hpp>

planning/autoware_behavior_path_dynamic_obstacle_avoidance_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_dynamic_obstacle_avoidance_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/scene.cpp

planning/autoware_behavior_path_dynamic_obstacle_avoidance_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
<buildtool_depend>autoware_cmake</buildtool_depend>
1717
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
1818

19+
<depend>autoware_behavior_path_planner</depend>
1920
<depend>autoware_behavior_path_planner_common</depend>
2021
<depend>autoware_perception_msgs</depend>
2122
<depend>autoware_planning_msgs</depend>
2223
<depend>autoware_vehicle_msgs</depend>
23-
<depend>behavior_path_planner</depend>
2424
<depend>geometry_msgs</depend>
2525
<depend>lanelet2_core</depend>
2626
<depend>lanelet2_extension</depend>

planning/autoware_behavior_path_dynamic_obstacle_avoidance_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include <ament_index_cpp/get_package_share_directory.hpp>
1818
#include <autoware_planning_test_manager/autoware_planning_test_manager.hpp>

planning/autoware_behavior_path_external_request_lane_change_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_external_request_lane_change_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/manager.cpp

planning/autoware_behavior_path_external_request_lane_change_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2020

2121
<depend>autoware_behavior_path_lane_change_module</depend>
22+
<depend>autoware_behavior_path_planner</depend>
2223
<depend>autoware_behavior_path_planner_common</depend>
2324
<depend>autoware_rtc_interface</depend>
24-
<depend>behavior_path_planner</depend>
2525
<depend>motion_utils</depend>
2626
<depend>pluginlib</depend>
2727
<depend>rclcpp</depend>

planning/autoware_behavior_path_external_request_lane_change_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
// limitations under the License.
1414

1515
#include "ament_index_cpp/get_package_share_directory.hpp"
16+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1617
#include "autoware_planning_test_manager/autoware_planning_test_manager.hpp"
17-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
1818
#include "planning_test_utils/planning_test_utils.hpp"
1919

2020
#include <gtest/gtest.h>

planning/autoware_behavior_path_goal_planner_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_goal_planner_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/default_fixed_goal_planner.cpp

planning/autoware_behavior_path_goal_planner_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<buildtool_depend>autoware_cmake</buildtool_depend>
2121
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2222

23+
<depend>autoware_behavior_path_planner</depend>
2324
<depend>autoware_behavior_path_planner_common</depend>
2425
<depend>autoware_rtc_interface</depend>
25-
<depend>behavior_path_planner</depend>
2626
<depend>motion_utils</depend>
2727
<depend>pluginlib</depend>
2828
<depend>rclcpp</depend>

planning/autoware_behavior_path_lane_change_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_lane_change_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/interface.cpp

planning/autoware_behavior_path_lane_change_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<buildtool_depend>autoware_cmake</buildtool_depend>
2020
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2121

22+
<depend>autoware_behavior_path_planner</depend>
2223
<depend>autoware_behavior_path_planner_common</depend>
2324
<depend>autoware_rtc_interface</depend>
24-
<depend>behavior_path_planner</depend>
2525
<depend>motion_utils</depend>
2626
<depend>pluginlib</depend>
2727
<depend>rclcpp</depend>

planning/autoware_behavior_path_lane_change_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
// limitations under the License.
1414

1515
#include "ament_index_cpp/get_package_share_directory.hpp"
16+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1617
#include "autoware_planning_test_manager/autoware_planning_test_manager.hpp"
17-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
1818
#include "planning_test_utils/planning_test_utils.hpp"
1919

2020
#include <gtest/gtest.h>

planning/behavior_path_planner/CMakeLists.txt planning/autoware_behavior_path_planner/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14)
2-
project(behavior_path_planner)
2+
project(autoware_behavior_path_planner)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()

planning/behavior_path_planner/include/behavior_path_planner/behavior_path_planner_node.hpp planning/autoware_behavior_path_planner/include/autoware_behavior_path_planner/behavior_path_planner_node.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_
16-
#define BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_
15+
#ifndef AUTOWARE_BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_
16+
#define AUTOWARE_BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_
1717

18+
#include "autoware_behavior_path_planner/planner_manager.hpp"
1819
#include "autoware_behavior_path_planner_common/data_manager.hpp"
1920
#include "autoware_behavior_path_planner_common/interface/scene_module_interface.hpp"
2021
#include "autoware_behavior_path_planner_common/interface/steering_factor_interface.hpp"
21-
#include "behavior_path_planner/planner_manager.hpp"
2222
#include "tier4_autoware_utils/ros/logger_level_configure.hpp"
2323

2424
#include <tier4_autoware_utils/ros/published_time_publisher.hpp>
@@ -228,4 +228,4 @@ class BehaviorPathPlannerNode : public rclcpp::Node
228228
};
229229
} // namespace behavior_path_planner
230230

231-
#endif // BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_
231+
#endif // AUTOWARE_BEHAVIOR_PATH_PLANNER__BEHAVIOR_PATH_PLANNER_NODE_HPP_

planning/behavior_path_planner/include/behavior_path_planner/planner_manager.hpp planning/autoware_behavior_path_planner/include/autoware_behavior_path_planner/planner_manager.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_
16-
#define BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_
15+
#ifndef AUTOWARE_BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_
16+
#define AUTOWARE_BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_
1717

1818
#include "autoware_behavior_path_planner_common/interface/scene_module_interface.hpp"
1919
#include "autoware_behavior_path_planner_common/interface/scene_module_manager_interface.hpp"
@@ -471,4 +471,4 @@ class PlannerManager
471471
};
472472
} // namespace behavior_path_planner
473473

474-
#endif // BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_
474+
#endif // AUTOWARE_BEHAVIOR_PATH_PLANNER__PLANNER_MANAGER_HPP_

planning/behavior_path_planner/package.xml planning/autoware_behavior_path_planner/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>behavior_path_planner</name>
4+
<name>autoware_behavior_path_planner</name>
55
<version>0.1.0</version>
66
<description>The behavior_path_planner package</description>
77

planning/behavior_path_planner/src/behavior_path_planner_node.cpp planning/autoware_behavior_path_planner/src/behavior_path_planner_node.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include "autoware_behavior_path_planner_common/marker_utils/utils.hpp"
1818
#include "autoware_behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"

planning/behavior_path_planner/src/planner_manager.cpp planning/autoware_behavior_path_planner/src/planner_manager.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/planner_manager.hpp"
15+
#include "autoware_behavior_path_planner/planner_manager.hpp"
1616

1717
#include "autoware_behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"
1818
#include "autoware_behavior_path_planner_common/utils/path_utils.hpp"
@@ -31,7 +31,8 @@
3131
namespace behavior_path_planner
3232
{
3333
PlannerManager::PlannerManager(rclcpp::Node & node, const size_t max_iteration_num)
34-
: plugin_loader_("behavior_path_planner", "behavior_path_planner::SceneModuleManagerInterface"),
34+
: plugin_loader_(
35+
"autoware_behavior_path_planner", "behavior_path_planner::SceneModuleManagerInterface"),
3536
logger_(node.get_logger().get_child("planner_manager")),
3637
clock_(*node.get_clock()),
3738
max_iteration_num_{max_iteration_num}

planning/behavior_path_planner/test/test_behavior_path_planner_node_interface.cpp planning/autoware_behavior_path_planner/test/test_autoware_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include <ament_index_cpp/get_package_share_directory.hpp>
1818
#include <autoware_planning_test_manager/autoware_planning_test_manager.hpp>

planning/autoware_behavior_path_sampling_planner_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_sampling_planner_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/sampling_planner_module.cpp

planning/autoware_behavior_path_side_shift_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_side_shift_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/scene.cpp

planning/autoware_behavior_path_side_shift_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<buildtool_depend>autoware_cmake</buildtool_depend>
1919
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2020

21+
<depend>autoware_behavior_path_planner</depend>
2122
<depend>autoware_behavior_path_planner_common</depend>
2223
<depend>autoware_planning_msgs</depend>
23-
<depend>behavior_path_planner</depend>
2424
<depend>geometry_msgs</depend>
2525
<depend>motion_utils</depend>
2626
<depend>pluginlib</depend>

planning/autoware_behavior_path_side_shift_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include <ament_index_cpp/get_package_share_directory.hpp>
1818
#include <autoware_planning_test_manager/autoware_planning_test_manager.hpp>

planning/autoware_behavior_path_start_planner_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_start_planner_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/start_planner_module.cpp

planning/autoware_behavior_path_start_planner_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<buildtool_depend>autoware_cmake</buildtool_depend>
2121
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2222

23+
<depend>autoware_behavior_path_planner</depend>
2324
<depend>autoware_behavior_path_planner_common</depend>
2425
<depend>autoware_rtc_interface</depend>
25-
<depend>behavior_path_planner</depend>
2626
<depend>motion_utils</depend>
2727
<depend>pluginlib</depend>
2828
<depend>rclcpp</depend>

planning/autoware_behavior_path_static_obstacle_avoidance_module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(autoware_behavior_path_static_obstacle_avoidance_module)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
6-
pluginlib_export_plugin_description_file(behavior_path_planner plugins.xml)
6+
pluginlib_export_plugin_description_file(autoware_behavior_path_planner plugins.xml)
77

88
ament_auto_add_library(${PROJECT_NAME} SHARED
99
src/scene.cpp

planning/autoware_behavior_path_static_obstacle_avoidance_module/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
<buildtool_depend>autoware_cmake</buildtool_depend>
2222
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2323

24+
<depend>autoware_behavior_path_planner</depend>
2425
<depend>autoware_behavior_path_planner_common</depend>
2526
<depend>autoware_objects_of_interest_marker_interface</depend>
2627
<depend>autoware_perception_msgs</depend>
2728
<depend>autoware_route_handler</depend>
2829
<depend>autoware_rtc_interface</depend>
2930
<depend>autoware_vehicle_info_utils</depend>
30-
<depend>behavior_path_planner</depend>
3131
<depend>geometry_msgs</depend>
3232
<depend>lanelet2_extension</depend>
3333
<depend>magic_enum</depend>

planning/autoware_behavior_path_static_obstacle_avoidance_module/test/test_behavior_path_planner_node_interface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "behavior_path_planner/behavior_path_planner_node.hpp"
15+
#include "autoware_behavior_path_planner/behavior_path_planner_node.hpp"
1616

1717
#include <ament_index_cpp/get_package_share_directory.hpp>
1818
#include <autoware_planning_test_manager/autoware_planning_test_manager.hpp>

0 commit comments

Comments
 (0)