We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some users want a behavior such that the robot does not wrap around any static obstacle.
To do so, I believe a quick modification is to change the following lines:
neptune/neptune/src/kinodynamic_search.cpp
Line 853 in 7a65220
Line 947 in 7a65220
TO for (int i=0; i<num_of_agents_+num_of_static_obst_; i++) // check entanglement
for (int i=0; i<num_of_agents_+num_of_static_obst_; i++) // check entanglement
If someone has tried it and it works, please let me know. Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some users want a behavior such that the robot does not wrap around any static obstacle.
To do so, I believe a quick modification is to change the following lines:
neptune/neptune/src/kinodynamic_search.cpp
Line 853 in 7a65220
AND
neptune/neptune/src/kinodynamic_search.cpp
Line 947 in 7a65220
TO
for (int i=0; i<num_of_agents_+num_of_static_obst_; i++) // check entanglement
If someone has tried it and it works, please let me know. Thanks.
The text was updated successfully, but these errors were encountered: