fix(global_planner): keep returned plans out of blocked cells - #117
Draft
akela1101 wants to merge 1 commit into
Draft
fix(global_planner): keep returned plans out of blocked cells#117akela1101 wants to merge 1 commit into
akela1101 wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Fable 5 <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GradientPath's interpolated traceback can emit plan poses inside cells at or above lethal_cost (e.g. the inscribed ring around an obstacle) even though the wavefront never expanded them, so get_path returns SUCCESS for a plan the controller can only refuse and the robot loops on replans. After extracting the plan, snap such poses to the nearest traversable neighbor holding a finite potential, drop duplicates created by snapping, and return NO_PATH_FOUND when a pose has no such neighbor. The start pose and poses within the goal tolerance keep the existing BLOCKED_START/BLOCKED_GOAL semantics.