Skip to content
Snippets Groups Projects
Verified Commit 980055ef authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: minor fix

parent 4ba344d1
No related merge requests found
...@@ -51,10 +51,7 @@ BOOST_PYTHON_MODULE(eigenpy) ...@@ -51,10 +51,7 @@ BOOST_PYTHON_MODULE(eigenpy)
"Returns True if A is approximately equal to B, within the precision determined by prec."); "Returns True if A is approximately equal to B, within the precision determined by prec.");
bp::def("is_approx",(bool (*)(const MatrixXd &, const MatrixXd &))&is_approx<MatrixXd,MatrixXd>, bp::def("is_approx",(bool (*)(const MatrixXd &, const MatrixXd &))&is_approx<MatrixXd,MatrixXd>,
bp::args("A","B"), bp::args("A","B"),
"Returns True if A is approximately equal to B.."); "Returns True if A is approximately equal to B.");
// EXPOSE_IS_APPROX(MatrixXd);
// EXPOSE_IS_APPROX(MatrixXf);
} }
exposeDecompositions(); exposeDecompositions();
......
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