Skip to content

Commit

Permalink
fix(avoidance): fix condition to trim front shift line (autowarefound…
Browse files Browse the repository at this point in the history
…ation#5949)

Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota authored and TomohitoAndo committed Apr 1, 2024
1 parent 758ca74 commit 4954155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ void ShiftLineGenerator::applySmallShiftFilter(
continue;
}

if (s.start_longitudinal < helper_->getMinimumPrepareDistance()) {
if (s.start_longitudinal + 1e-3 < helper_->getMinimumPrepareDistance()) {
continue;
}

Expand Down

0 comments on commit 4954155

Please sign in to comment.