diff --git a/planning/behavior_path_planner/src/utils/utils.cpp b/planning/behavior_path_planner/src/utils/utils.cpp index bfb795f42035d..54c47bcdbd22f 100644 --- a/planning/behavior_path_planner/src/utils/utils.cpp +++ b/planning/behavior_path_planner/src/utils/utils.cpp @@ -1510,8 +1510,11 @@ void generateDrivableArea( } // make bound longitudinally monotonic - makeBoundLongitudinallyMonotonic(path, true); // for left bound - makeBoundLongitudinallyMonotonic(path, false); // for right bound + // TODO(Murooka) Fix makeBoundLongitudinallyMonotonic + if (enable_expanding_polygon) { + makeBoundLongitudinallyMonotonic(path, true); // for left bound + makeBoundLongitudinallyMonotonic(path, false); // for right bound + } } // calculate bounds from drivable lanes and hatched road markings