Skip to content

Commit

Permalink
pre-commit changes
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Jan 22, 2024
1 parent 78aa42f commit 033de91
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
value="$(eval &quot;'$(var behavior_path_planner_launch_modules)' + 'behavior_path_planner::StartPlannerModuleManager, '&quot;)"
if="$(var launch_start_planner_module)"
/>
<let
<let
name="behavior_path_planner_launch_modules"
value="$(eval &quot;'$(var behavior_path_planner_launch_modules)' + 'behavior_path_planner::SamplingPlannerModuleManager, '&quot;)"
if="$(var launch_sampling_planner_module)"
Expand Down
7 changes: 3 additions & 4 deletions planning/behavior_path_planner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
<depend>autoware_auto_vehicle_msgs</depend>
<depend>autoware_perception_msgs</depend>
<depend>behavior_path_planner_common</depend>
<depend>bezier_sampler</depend>
<depend>freespace_planning_algorithms</depend>
<depend>frenet_planner</depend>
<depend>geometry_msgs</depend>
<depend>interpolation</depend>
<depend>lane_departure_checker</depend>
Expand All @@ -52,6 +54,7 @@
<depend>magic_enum</depend>
<depend>motion_utils</depend>
<depend>object_recognition_utils</depend>
<depend>path_sampler</depend>
<depend>planning_test_utils</depend>
<depend>pluginlib</depend>
<depend>rclcpp</depend>
Expand All @@ -66,10 +69,6 @@
<depend>tier4_planning_msgs</depend>
<depend>vehicle_info_util</depend>
<depend>visualization_msgs</depend>
<depend>bezier_sampler</depend>
<depend>frenet_planner</depend>
<depend>path_sampler</depend>


<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__CONSTRAINTS_CHECKER_HPP_
#define BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__CONSTRAINTS_CHECKER_HPP_
#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__CONSTRAINTS_CHECKER_HPP_
#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__CONSTRAINTS_CHECKER_HPP_

#include "sampler_common/structures.hpp"

Expand Down Expand Up @@ -111,4 +111,4 @@ bool checkHardConstraints(
// ~SoftConstraintsChecker(){};
// };

#endif // BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__CONSTRAINTS_CHECKER_HPP_
#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__CONSTRAINTS_CHECKER_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__MANAGER_HPP_
#define BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__MANAGER_HPP_
#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__MANAGER_HPP_
#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__MANAGER_HPP_

#include "behavior_path_planner_common/interface/scene_module_manager_interface.hpp"
#include "behavior_path_sampling_planner_module/sampling_planner_module.hpp"
Expand Down Expand Up @@ -51,4 +51,4 @@ class SamplingPlannerModuleManager : public SceneModuleManagerInterface

} // namespace behavior_path_planner

#endif // BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__MANAGER_HPP_
#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__MANAGER_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__SAMPLING_PLANNER_MODULE_HPP_
#define BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__SAMPLING_PLANNER_MODULE_HPP_
#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_
#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_

#include "behavior_path_planner_common/interface/scene_module_interface.hpp"
#include "behavior_path_planner_common/marker_utils/utils.hpp"
Expand Down Expand Up @@ -271,4 +271,4 @@ class SamplingPlannerModule : public SceneModuleInterface

} // namespace behavior_path_planner

#endif // BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__SAMPLING_PLANNER_MODULE_HPP_
#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__PARAMETERS_HPP_
#define BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__PARAMETERS_HPP_
#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_PARAMETERS_HPP_
#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_PARAMETERS_HPP_

#include "bezier_sampler/bezier_sampling.hpp"
#include "sampler_common/structures.hpp"
Expand Down Expand Up @@ -83,4 +83,4 @@ struct SamplingPlannerInternalParameters
} preprocessing{};
};
} // namespace behavior_path_planner
#endif // BEHAVIOR_PATH_PLANNER__SCENE_MODULE__SAMPLING_PLANNER__PARAMETERS_HPP_
#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_PARAMETERS_HPP_
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEHAVIOR_PATH_PLANNER__UTILS__SAMPLING_PLANNER__UTIL_HPP_
#define BEHAVIOR_PATH_PLANNER__UTILS__SAMPLING_PLANNER__UTIL_HPP_
#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__UTIL_HPP_
#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__UTIL_HPP_
#include "sampler_common/structures.hpp"
#include "sampler_common/transform/spline_transform.hpp"

Expand Down Expand Up @@ -104,4 +104,4 @@ inline sampler_common::State getInitialState(

} // namespace behavior_path_planner

#endif // BEHAVIOR_PATH_PLANNER__UTILS__SAMPLING_PLANNER__UTIL_HPP_
#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__UTIL_HPP_
7 changes: 3 additions & 4 deletions planning/behavior_path_sampling_planner_module/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<maintainer email="[email protected]">Daniel Sanchez</maintainer>
<maintainer email="[email protected]">Maxime Clement</maintainer>


<license>Apache License 2.0</license>

<buildtool_depend>ament_cmake_auto</buildtool_depend>
Expand All @@ -22,7 +21,9 @@
<depend>autoware_auto_vehicle_msgs</depend>
<depend>autoware_perception_msgs</depend>
<depend>behavior_path_planner_common</depend>
<depend>bezier_sampler</depend>
<depend>freespace_planning_algorithms</depend>
<depend>frenet_planner</depend>
<depend>geometry_msgs</depend>
<depend>interpolation</depend>
<depend>lane_departure_checker</depend>
Expand All @@ -32,6 +33,7 @@
<depend>magic_enum</depend>
<depend>motion_utils</depend>
<depend>object_recognition_utils</depend>
<depend>path_sampler</depend>
<depend>planning_test_utils</depend>
<depend>pluginlib</depend>
<depend>rclcpp</depend>
Expand All @@ -47,9 +49,6 @@
<depend>tier4_planning_msgs</depend>
<depend>vehicle_info_util</depend>
<depend>visualization_msgs</depend>
<depend>bezier_sampler</depend>
<depend>frenet_planner</depend>
<depend>path_sampler</depend>

<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
Expand Down

0 comments on commit 033de91

Please sign in to comment.