Replies: 1 comment
-
Sounds good to me. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Proposal
We should consider adding the ability to get some number of prioritized plans from the solver interface rather than just the single best plan. Since the search is a graph with potentially many samples per waypoint, most searches will have more than one valid trajectory. We could add an additional function (or modify the existing function) in the solver like below:
Use case
It sometimes makes sense to run
descartes
with "lazy" collision checking (i.e. collision check the state samples, but don't collision check the connections between them) since collision checking is so computationally expensive. In the case that a trajectory fails a post-search collision check, it would be valuable to leverage the next best trajectories until one is found to be collision-free rather than failing simply because the best trajectory was in collisionBeta Was this translation helpful? Give feedback.
All reactions