mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-19 08:09:36 +08:00
Update file jacobisvd.cpp
This commit is contained in:
parent
262194f12c
commit
b8422c99cd
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user