File tree 6 files changed +18
-17
lines changed
planning/autoware_behavior_path_avoidance_by_lane_change_module/src
6 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
- #ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__DATA_STRUCTS_HPP_
15
- #define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__DATA_STRUCTS_HPP_
14
+ #ifndef DATA_STRUCTS_HPP_
15
+ #define DATA_STRUCTS_HPP_
16
16
17
17
#include " behavior_path_avoidance_module/data_structs.hpp"
18
18
@@ -34,4 +34,4 @@ struct AvoidanceByLCParameters : public AvoidanceParameters
34
34
};
35
35
} // namespace autoware::behavior_path_planner
36
36
37
- #endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__DATA_STRUCTS_HPP_
37
+ #endif // DATA_STRUCTS_HPP_
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
16
- #define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
15
+ #ifndef INTERFACE_HPP_
16
+ #define INTERFACE_HPP_
17
17
18
+ #include " behavior_path_lane_change_module/interface.hpp"
18
19
#include " data_structs.hpp"
19
20
#include " scene.hpp"
20
- #include " behavior_path_lane_change_module/interface.hpp"
21
21
22
22
#include < rclcpp/rclcpp.hpp>
23
23
@@ -51,4 +51,4 @@ class AvoidanceByLaneChangeInterface : public LaneChangeInterface
51
51
};
52
52
} // namespace autoware::behavior_path_planner
53
53
54
- #endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__INTERFACE_HPP_
54
+ #endif // INTERFACE_HPP_
Original file line number Diff line number Diff line change 14
14
15
15
#include " manager.hpp"
16
16
17
- #include " data_structs.hpp"
18
17
#include " behavior_path_avoidance_module/parameter_helper.hpp"
18
+ #include " data_structs.hpp"
19
19
#include " tier4_autoware_utils/ros/parameter.hpp"
20
20
#include " tier4_autoware_utils/ros/update_param.hpp"
21
21
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
16
- #define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
15
+ #ifndef MANAGER_HPP_
16
+ #define MANAGER_HPP_
17
17
18
+ #include " behavior_path_lane_change_module/manager.hpp"
18
19
#include " data_structs.hpp"
19
20
#include " interface.hpp"
20
- #include " behavior_path_lane_change_module/manager.hpp"
21
21
22
22
#include < rclcpp/rclcpp.hpp>
23
23
@@ -51,4 +51,4 @@ class AvoidanceByLaneChangeModuleManager : public LaneChangeModuleManager
51
51
};
52
52
} // namespace autoware::behavior_path_planner
53
53
54
- #endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__MANAGER_HPP_
54
+ #endif // MANAGER_HPP_
Original file line number Diff line number Diff line change @@ -153,7 +153,8 @@ void AvoidanceByLaneChange::fillAvoidanceTargetObjects(
153
153
::behavior_path_planner::utils::path_safety_checker::separateObjectsByLanelets (
154
154
*planner_data_->dynamic_object, data.current_lanelets,
155
155
[](const auto & obj, const auto & lane) {
156
- return ::behavior_path_planner::utils::path_safety_checker::isPolygonOverlapLanelet (obj, lane);
156
+ return ::behavior_path_planner::utils::path_safety_checker::isPolygonOverlapLanelet (
157
+ obj, lane);
157
158
});
158
159
159
160
// Assume that the maximum allocation for data.other object is the sum of
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
16
- #define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
15
+ #ifndef SCENE_HPP_
16
+ #define SCENE_HPP_
17
17
18
- #include " data_structs.hpp"
19
18
#include " behavior_path_avoidance_module/helper.hpp"
20
19
#include " behavior_path_lane_change_module/scene.hpp"
20
+ #include " data_structs.hpp"
21
21
22
22
#include < memory>
23
23
@@ -68,4 +68,4 @@ class AvoidanceByLaneChange : public NormalLaneChange
68
68
};
69
69
} // namespace autoware::behavior_path_planner
70
70
71
- #endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_
71
+ #endif // SCENE_HPP_
You can’t perform that action at this time.
0 commit comments