Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and esteve committed May 24, 2024
1 parent b272b87 commit 69684c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions planning/autoware_behavior_velocity_planner/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,12 @@ autoware_auto_planning_msgs::msg::Path BehaviorVelocityPlannerNode::generatePath
std::make_shared<const PlannerData>(planner_data), *input_path_msg);

// screening
const auto filtered_path = ::behavior_velocity_planner::filterLitterPathPoint(to_path(velocity_planned_path));
const auto filtered_path =
::behavior_velocity_planner::filterLitterPathPoint(to_path(velocity_planned_path));

// interpolation
const auto interpolated_path_msg =
::behavior_velocity_planner::interpolatePath(filtered_path, forward_path_length_, behavior_output_path_interval_);
const auto interpolated_path_msg = ::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);
Expand Down
2 changes: 1 addition & 1 deletion planning/autoware_behavior_velocity_planner/src/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ namespace autoware::behavior_velocity_planner
using autoware_auto_mapping_msgs::msg::HADMapBin;
using autoware_behavior_velocity_planner::srv::LoadPlugin;
using autoware_behavior_velocity_planner::srv::UnloadPlugin;
using tier4_planning_msgs::msg::VelocityLimit;
using ::behavior_velocity_planner::TrafficSignalStamped;
using tier4_planning_msgs::msg::VelocityLimit;

class BehaviorVelocityPlannerNode : public rclcpp::Node
{
Expand Down

0 comments on commit 69684c7

Please sign in to comment.