File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -321,21 +321,14 @@ def setup() -> aligator.TrajOptProblem:
321321 vizer = None
322322
323323 tol = 1e-4
324- if args .bounds :
325- mu_init = 1e1
326- if args .obstacles :
327- mu_init = 1.0
328- # elif args.obstacles:
329- # mu_init = 1e-2
330- else :
331- mu_init = 1e-6
324+ mu_init = 1e-3
332325 verbose = aligator .VerboseLevel .VERBOSE
333326 solver = aligator .SolverProxDDP (tol , mu_init , verbose = verbose )
334327 history_cb = aligator .HistoryCallback (solver )
335328 if args .fddp :
336329 solver = aligator .SolverFDDP (tol , verbose = verbose )
337- solver .max_iters = 400
338- solver .reg_min = 1e-5
330+ solver .max_iters = 300
331+ solver .reg_min = 1e-4
339332 solver .registerCallback ("his" , history_cb )
340333 solver .setup (problem )
341334 solver .run (problem , xs_init , us_init )
You can’t perform that action at this time.
0 commit comments