Skip to content

Commit

Permalink
Changed collision check to detect only lethal and unknown cells (ros-…
Browse files Browse the repository at this point in the history
…navigation#1404)(ros-navigation#1603)

Signed-off-by: Aitor Miguel Blanco <aitormibl@gmail.com>
  • Loading branch information
gimait committed Mar 21, 2020
1 parent 4286923 commit 0749e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_costmap_2d/src/collision_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bool CollisionChecker::isCollisionFree(
const geometry_msgs::msg::Pose2D & pose)
{
try {
if (scorePose(pose) >= INSCRIBED_INFLATED_OBSTACLE) {
if (scorePose(pose) >= LETHAL_OBSTACLE) {
return false;
}
return true;
Expand Down

0 comments on commit 0749e5a

Please sign in to comment.