Update file jacobisvd.cpp

This commit is contained in:
Rasmus Munk Larsen 2023-01-06 21:14:17 +00:00
parent 262194f12c
commit b8422c99cd

View File

@ -60,7 +60,9 @@ void jacobisvd_all_options(const MatrixType& input = MatrixType()) {
}
template <typename MatrixType>
void jacobisvd_verify_assert(const MatrixType& m = MatrixType()) {
void jacobisvd_verify_assert(const MatrixType& input = MatrixType()) {
MatrixType m(input.rows(), input.cols());
svd_fill_random(m);
svd_verify_assert<MatrixType, 0>(m);
svd_verify_assert<MatrixType, ColPivHouseholderQRPreconditioner>(m);
svd_verify_assert<MatrixType, HouseholderQRPreconditioner>(m);