Skip to content

Commit

Permalink
fix(behavior_velocity): add check of common acceleration (#615)
Browse files Browse the repository at this point in the history
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
  • Loading branch information
taikitanaka3 authored Apr 1, 2022
1 parent a8025f0 commit 95414c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions planning/behavior_velocity_planner/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,9 @@ bool BehaviorVelocityPlannerNode::isDataReady(const PlannerData planner_data) co
if (!d.current_velocity) {
return false;
}
if (!d.current_accel) {
return false;
}
if (!d.predicted_objects) {
return false;
}
Expand Down

0 comments on commit 95414c5

Please sign in to comment.