Skip to content

Commit

Permalink
fix(behavior_path_planner): remove setting maximum velocity after lan…
Browse files Browse the repository at this point in the history
…e change (autowarefoundation#3756)

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
  • Loading branch information
rej55 committed May 19, 2023
1 parent 6bf3fb1 commit 7b424d8
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,6 @@ std::optional<LaneChangePath> constructCandidatePath(
lane_changing_start_point.point.longitudinal_velocity_mps);
continue;
}
point.point.longitudinal_velocity_mps =
std::min(point.point.longitudinal_velocity_mps, static_cast<float>(lane_changing_velocity));
const auto nearest_idx =
motion_utils::findNearestIndex(target_segment.points, point.point.pose);
point.lane_ids = target_segment.points.at(*nearest_idx).lane_ids;
Expand Down

0 comments on commit 7b424d8

Please sign in to comment.