Skip to content
Snippets Groups Projects
Commit 48609ddb authored by jcarpent's avatar jcarpent
Browse files

[Unit Test] Change precision of the expected results to comply with Eigen 3.3.0

parent 38d3a58d
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ BOOST_AUTO_TEST_CASE ( test_pinocchio_Sym3 )
Symmetric3 S(M);
for(int i=0;i<3;++i)
for(int j=0;j<3;++j)
BOOST_CHECK_EQUAL(S(i,j), M(i,j) );
BOOST_CHECK_SMALL(S(i,j) - M(i,j), Eigen::NumTraits<double>::dummy_precision());
}
}
......
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