Skip to content
Snippets Groups Projects
Commit 7e24db1c authored by Pierre Fernbach's avatar Pierre Fernbach
Browse files

[script] talos_circle : only try the direct path

parent e9bb8816
No related branches found
No related tags found
No related merge requests found
...@@ -114,8 +114,15 @@ ps.selectDistance("Kinodynamic") ...@@ -114,8 +114,15 @@ ps.selectDistance("Kinodynamic")
ps.selectPathPlanner("DynamicPlanner") ps.selectPathPlanner("DynamicPlanner")
# Solve the planning problem : # Solve the planning problem :
t = ps.solve () success = ps.client.problem.prepareSolveStepByStep()
print "Guide planning time : ",t
if not success:
print "planning failed."
import sys
sys.exit(1)
ps.client.problem.finishSolveStepByStep()
try : try :
# display solution : # display solution :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment