43 #ifndef ILQGAMES_SOLVER_SOLVER_PARAMS_H 44 #define ILQGAMES_SOLVER_SOLVER_PARAMS_H 46 #include <ilqgames/utils/types.h> 53 float convergence_tolerance = 1e-1;
54 size_t max_solver_iters = 1000;
59 bool linesearch =
true;
60 float initial_alpha_scaling = 0.5;
61 float geometric_alpha_scaling = 0.5;
62 size_t max_backtracking_steps = 10;
63 float expected_decrease_fraction = 0.1;
66 bool open_loop =
false;
69 float state_regularization = 0.0;
70 float control_regularization = 0.0;
73 size_t unconstrained_solver_max_iters = 10;
74 float geometric_mu_scaling = 1.1;
75 float geometric_mu_downscaling = 0.5;
76 float geometric_lambda_downscaling = 0.5;
77 float constraint_error_tolerance = 1e-1;
81 bool reset_problem =
true;
82 bool reset_lambdas =
true;