Skip to content

Commit aea8f37

Browse files
committed
decompositions: fix Eigen type
1 parent e06fa82 commit aea8f37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/eigenpy/decompositions/LDLT.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace eigenpy
5454
"Returns the LDLT decomposition matrix.",
5555
bp::return_value_policy<bp::return_by_value>())
5656

57-
.def("rankUpdate",(Solver (Solver::*)(const VectorType &, const RealScalar &))&Solver::template rankUpdate<VectorType>,
57+
.def("rankUpdate",(Solver (Solver::*)(const Eigen::MatrixBase<VectorType> &, const RealScalar &))&Solver::template rankUpdate<VectorType>,
5858
bp::args("self","vector","sigma"))
5959

6060
#if EIGEN_VERSION_AT_LEAST(3,2,90)

0 commit comments

Comments
 (0)