Closed pFernbach closed 4 years ago
https://github.com/humanoid-path-planner/hpp-rbprm/blob/master/src/interpolation/time-constraint-path.cc#L109
Since pinocchio 2.1.10 this line create an invalid_argument error as interpolate explicitly check that the dimension of the inputs are the same as model.nq ( = configSize - extraDof).
Because of how interpolate is implemented in hpp-pinocchio (https://github.com/humanoid-path-planner/hpp-pinocchio/blob/master/src/configuration.cc#L133-L138) we cannot simply give the first nq values of the configurations as input to the method ...
Fixed with the new release of hpp-pinocchio.
https://github.com/humanoid-path-planner/hpp-rbprm/blob/master/src/interpolation/time-constraint-path.cc#L109
Since pinocchio 2.1.10 this line create an invalid_argument error as interpolate explicitly check that the dimension of the inputs are the same as model.nq ( = configSize - extraDof).
Because of how interpolate is implemented in hpp-pinocchio (https://github.com/humanoid-path-planner/hpp-pinocchio/blob/master/src/configuration.cc#L133-L138) we cannot simply give the first nq values of the configurations as input to the method ...