@@ -25,28 +25,18 @@ struct BDCSVDVisitor
2525 template <class PyClass >
2626 void visit (PyClass &cl) const {
2727 cl.def (bp::init<>(bp::arg (" self" ), " Default constructor" ))
28- // TODO: Management of _Options, put default options for default
29- // constructor
3028 .def (bp::init<Eigen::DenseIndex, Eigen::DenseIndex>(
3129 bp::args (" self" , " rows" , " cols" ),
3230 " Default Constructor with memory preallocation. " ))
3331 .def (bp::init<Eigen::DenseIndex, Eigen::DenseIndex, unsigned int >(
34- bp::args (" self" , " rows" , " cols" , " computationOptions " ),
35- " Default Constructor with memory preallocation. \n\n "
36- " Like the default constructor but with preallocation of the "
37- " internal "
38- " data according to the specified problem size and the "
39- " computationOptions. " ))
32+ bp::args (" self" , " rows" , " cols" , " computationOptions" ),
33+ " Default Constructor with memory preallocation. " ))
4034 .def (bp::init<MatrixType>(
4135 bp::args (" self" , " matrix" ),
4236 " Constructor performing the decomposition of given matrix. " ))
4337 .def (bp::init<MatrixType, unsigned int >(
44- bp::args (" self" , " matrix" , " computationOptions " ),
45- " Constructor performing the decomposition of given matrix. \n\n "
46- " One cannot request unitiaries using both the Options template "
47- " parameter "
48- " and the constructor. If possible, prefer using the Options "
49- " template parameter." ))
38+ bp::args (" self" , " matrix" , " computationOptions" ),
39+ " Constructor performing the decomposition of given matrix. " ))
5040
5141 .def (" cols" , &Solver::cols, bp::arg (" self" ),
5242 " Returns the number of columns. " )
0 commit comments