Skip to content

Commit ac8d50b

Browse files
revert(lane_change): remove terminal in abort path (#6930)
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
1 parent ad46e3c commit ac8d50b

File tree

1 file changed

+5
-5
lines changed
  • planning/behavior_path_lane_change_module/src

1 file changed

+5
-5
lines changed

planning/behavior_path_lane_change_module/src/scene.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1974,11 +1974,11 @@ bool NormalLaneChange::calcAbortPath()
19741974

19751975
auto reference_lane_segment = prev_module_output_.path;
19761976
{
1977-
const auto terminal_path =
1978-
calcTerminalLaneChangePath(reference_lanelets, selected_path.info.target_lanes);
1979-
if (terminal_path) {
1980-
reference_lane_segment = terminal_path->path;
1981-
}
1977+
// const auto terminal_path =
1978+
// calcTerminalLaneChangePath(reference_lanelets, selected_path.info.target_lanes);
1979+
// if (terminal_path) {
1980+
// reference_lane_segment = terminal_path->path;
1981+
// }
19821982
const auto return_pose = shifted_path.path.points.at(abort_return_idx).point.pose;
19831983
const auto seg_idx = motion_utils::findFirstNearestSegmentIndexWithSoftConstraints(
19841984
reference_lane_segment.points, return_pose, common_param.ego_nearest_dist_threshold,

0 commit comments

Comments
 (0)