Skip to content

Commit

Permalink
disable overlapped cutting
Browse files Browse the repository at this point in the history
Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 committed Aug 3, 2023
1 parent 20d968e commit 769be32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion planning/behavior_path_planner/src/utils/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1266,8 +1266,10 @@ boost::optional<size_t> getOverlappedLaneletId(const std::vector<DrivableLanes>
}

std::vector<DrivableLanes> cutOverlappedLanes(
PathWithLaneId & path, const std::vector<DrivableLanes> & lanes)
[[maybe_unused]] PathWithLaneId & path, const std::vector<DrivableLanes> & lanes)
{
return lanes;

const auto overlapped_lanelet_idx = getOverlappedLaneletId(lanes);
if (!overlapped_lanelet_idx) {
return lanes;
Expand Down

0 comments on commit 769be32

Please sign in to comment.