You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: planning/behavior_path_avoidance_by_lane_change_module/include/behavior_path_avoidance_by_lane_change_module/data_structs.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_avoidance_by_lane_change_module/include/behavior_path_avoidance_by_lane_change_module/interface.hpp
+2-6
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,8 @@
25
25
#include<string>
26
26
#include<unordered_map>
27
27
28
-
namespaceautoware
28
+
namespaceautoware::behavior_path_planner
29
29
{
30
-
namespacebehavior_path_planner
31
-
{
32
-
using ::behavior_path_planner::Direction;
33
30
using ::behavior_path_planner::LaneChangeInterface;
34
31
using ::behavior_path_planner::ObjectsOfInterestMarkerInterface;
35
32
using ::behavior_path_planner::RTCInterface;
@@ -52,7 +49,6 @@ class AvoidanceByLaneChangeInterface : public LaneChangeInterface
Copy file name to clipboardexpand all lines: planning/behavior_path_avoidance_by_lane_change_module/include/behavior_path_avoidance_by_lane_change_module/manager.hpp
+2-9
Original file line number
Diff line number
Diff line change
@@ -26,17 +26,11 @@
26
26
#include<unordered_map>
27
27
#include<vector>
28
28
29
-
namespaceautoware
29
+
namespaceautoware::behavior_path_planner
30
30
{
31
-
namespacebehavior_path_planner
32
-
{
33
-
using ::behavior_path_planner::AvoidancePlanningData;
34
31
using ::behavior_path_planner::LaneChangeModuleManager;
35
32
using ::behavior_path_planner::LaneChangeModuleType;
36
-
using ::behavior_path_planner::ObjectParameter;
37
33
using ::behavior_path_planner::SceneModuleInterface;
38
-
using ::behavior_path_planner::SceneModuleManagerInterface;
Copy file name to clipboardexpand all lines: planning/behavior_path_avoidance_by_lane_change_module/include/behavior_path_avoidance_by_lane_change_module/scene.hpp
+12-17
Original file line number
Diff line number
Diff line change
@@ -21,28 +21,24 @@
21
21
22
22
#include<memory>
23
23
24
-
namespaceautoware
24
+
namespaceautoware::behavior_path_planner
25
25
{
26
-
namespacebehavior_path_planner
27
-
{
28
-
using ::behavior_path_planner::AvoidanceParameters;
29
-
using ::route_handler::Direction;
26
+
using ::behavior_path_planner::DebugData;
30
27
using AvoidanceDebugData = DebugData;
31
28
using ::behavior_path_planner::AvoidancePlanningData;
32
-
using ::behavior_path_planner::LaneChangeModuleType;
33
29
using ::behavior_path_planner::LaneChangeParameters;
34
30
using ::behavior_path_planner::ObjectData;
35
31
using ::behavior_path_planner::ObjectDataArray;
36
-
using ::behavior_path_planner::Point2d;
37
32
using ::behavior_path_planner::PredictedObject;
38
33
using ::behavior_path_planner::helper::avoidance::AvoidanceHelper;
34
+
using ::behavior_path_planner::NormalLaneChange;
39
35
40
-
classAvoidanceByLaneChange : public ::behavior_path_planner::NormalLaneChange
0 commit comments