Skip to content
Snippets Groups Projects
Commit 170b298b authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

Fix unit test

parent a7804f51
No related branches found
No related tags found
No related merge requests found
......@@ -457,6 +457,7 @@ class TestFeatureTransformation : public FeatureTestBase
// compute qdot = J^+ * e
// check that faMfb (q+eps*qdot) ~= faMfb(q) + eps * faMfbDesDot
time_++;
Vector q (pinocchio::randomConfiguration (model_));
pinocchio::framesForwardKinematics (model_, data_, q);
pinocchio::computeJointJacobians (model_, data_);
......@@ -510,7 +511,7 @@ class TestFeatureTransformation : public FeatureTestBase
Vector faVfafb = faJfafb * qdot;
EIGEN_VECTOR_IS_APPROX(faMfbDesDot, faVfafb, eps);
// Check with finite difference.
Vector q_qdot = pinocchio::integrate (model_, q, qdot);
pinocchio::framesForwardKinematics (model_, data_, q_qdot);
......
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