You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merging #763 (6769fe8) into main (48625f6) will increase coverage by 0.69%.
The diff coverage is n/a.
❗ Current head 6769fe8 differs from pull request most recent head 24f8abd. Consider uploading reports for the commit 24f8abd to get more accurate results
I am having the following issues with this branch:
Multiple consecutive requests are not possible. In single_plan_execution.cpp the call_once of the local planner ensures that the local planner is only executed once. However, this is not reset when the local planner was successful. Replacing the std::once_flag with a Boolean and resetting after stopping the local planner seems to solve this. However I'm not sure this is thread safe.
When the global planner does not find a solution (Not possible or collision after smoothing) this crashes the Hybrid Planner Component container. In other words: if the initial path is not possible, it will not try again, or return that this path is not possible, but the hybrid container will stop.
It is not possible to pass a ompl_planning.yaml file to change the ompl planning parameters for the global planning.
The following parameters in the MotionPlanRequest are ignored:
I am having the following issues with this branch:
Multiple consecutive requests are not possible. In single_plan_execution.cpp the call_once of the local planner ensures that the local planner is only executed once. However, this is not reset when the local planner was successful. Replacing the std::once_flag with a Boolean and resetting after stopping the local planner seems to solve this. However I'm not sure this is thread safe.
When the global planner does not find a solution (Not possible or collision after smoothing) this crashes the Hybrid Planner Component container. In other words: if the initial path is not possible, it will not try again, or return that this path is not possible, but the hybrid container will stop.
It is not possible to pass a ompl_planning.yaml file to change the ompl planning parameters for the global planning.
The following parameters in the MotionPlanRequest are ignored:
max_velocity_scaling_factor
max_acceleration_scaling_factor
max_cartesian_speed
workspace_parameters.*
start_state.*
@JensVanhooydonck Hello, right now I also try to use hybrid planning. Passing ompl_planning.yaml and modify max_velocity_scaling_factor do not work as you described. Have you figure out how to fix it? Any advice will be highly appreciated. Thanks!
I am having the following issues with this branch:
Multiple consecutive requests are not possible. In single_plan_execution.cpp the call_once of the local planner ensures that the local planner is only executed once. However, this is not reset when the local planner was successful. Replacing the std::once_flag with a Boolean and resetting after stopping the local planner seems to solve this. However I'm not sure this is thread safe.
When the global planner does not find a solution (Not possible or collision after smoothing) this crashes the Hybrid Planner Component container. In other words: if the initial path is not possible, it will not try again, or return that this path is not possible, but the hybrid container will stop.
It is not possible to pass a ompl_planning.yaml file to change the ompl planning parameters for the global planning.
The following parameters in the MotionPlanRequest are ignored:
max_velocity_scaling_factor
max_acceleration_scaling_factor
max_cartesian_speed
workspace_parameters.*
start_state.*
@JensVanhooydonck Hello, right now I also try to use hybrid planning. Passing ompl_planning.yaml and modify max_velocity_scaling_factor do not work as you described. Have you figure out how to fix it? Any advice will be highly appreciated. Thanks!
I didn't try this in the last year.. I don't know what the status is currently..
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
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.
Description
Here is a PR for the hybrid planner. I plan on doing the work to clean this up so it can be merged.
Here is the original hybrid planner PR: #488
Checklist