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

change default constraints value in data.hh

parent 62b8312f
No related branches found
No related tags found
No related merge requests found
......@@ -65,15 +65,15 @@ namespace bezier_com_traj
{
Constraints()
: flag_(INIT_POS | INIT_VEL | END_VEL | END_POS)
, constraintAcceleration_(true)
, maxAcceleration_(5.)
, reduce_h_(1e-4) {}
, constraintAcceleration_(false)
, maxAcceleration_(10.)
, reduce_h_(1e-3) {}
Constraints(ConstraintFlag flag)
: flag_(flag)
, constraintAcceleration_(true)
, maxAcceleration_(5.)
, reduce_h_(1e-4) {}
, constraintAcceleration_(false)
, maxAcceleration_(10.)
, reduce_h_(1e-3) {}
~Constraints(){}
......
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