Skip to content

Commit

Permalink
fix(behavior_velocity_planner): lower stop decision velocity (#525)
Browse files Browse the repository at this point in the history
Signed-off-by: Makoto Kurihara <mkuri8m@gmail.com>
  • Loading branch information
mkuri authored Mar 16, 2022
1 parent 0534cc0 commit 88bc700
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ struct PlannerData
}

// Check all velocities
constexpr double stop_velocity = 0.1;
constexpr double stop_velocity = 1e-3;
for (const auto & v : vs) {
if (v >= stop_velocity) {
return false;
Expand Down

0 comments on commit 88bc700

Please sign in to comment.