-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Added possibility to output opti problems to functions #16
Conversation
…o dict in optiSolver This should simplify a bit the code
to_list also uses to_dict
Released as iDynTree 12.3.0 : https://github.com/robotology/idyntree/releases/tag/v12.3.0 . |
@diegoferigo @rob-mau let me know if you have any comment, otherwise I will proceed with the merge |
Merging |
In order to have the
to_function
functionality, I had to implement conversions to/from dictionaries. This in turned, allowed me to simplify a good portion of code from theOptiSolver
.To showcase this change, I edited
main_periodic_step_parametric
. A full output trajectory can be obtained by passing only the densities and link length multipliers as inputs.I also added
main_sensitivity
to compute the jacobian of the output of the pose finder with respect the length multipliers, and densities. This file requires robotology/idyntree#1185, but since it is only a runtime dependency, I think we can proceed anyhow.