@@ -56,9 +56,9 @@ namespace eigenpy
5656
5757 .def (" rankUpdate" ,(Solver & (Solver::*)(const Eigen::MatrixBase<VectorType> &, const RealScalar &))&Solver::template rankUpdate<VectorType>,
5858 bp::args (" self" ," vector" ," sigma" ),
59- bp::return_value_policy<bp::reference_existing_object>())
59+ bp::return_value_policy<bp::reference_existing_object>() )
6060
61- #if EIGEN_VERSION_AT_LEAST(3,2,90 )
61+ #if EIGEN_VERSION_AT_LEAST(3,3,0 )
6262 .def (" adjoint" ,&Solver::adjoint,bp::arg (" self" ),
6363 " Returns the adjoint, that is, a reference to the decomposition itself as if the underlying matrix is self-adjoint." ,
6464 bp::return_value_policy<bp::reference_existing_object>())
@@ -71,7 +71,7 @@ namespace eigenpy
7171
7272 .def (" info" ,&Solver::info,bp::arg (" self" ),
7373 " NumericalIssue if the input contains INF or NaN values or overflow occured. Returns Success otherwise." )
74- #if EIGEN_VERSION_AT_LEAST(3,2,90 )
74+ #if EIGEN_VERSION_AT_LEAST(3,3,0 )
7575 .def (" rcond" ,&Solver::rcond,bp::arg (" self" ),
7676 " Returns an estimate of the reciprocal condition number of the matrix." )
7777#endif
0 commit comments