diff options
Diffstat (limited to 'Eigen')
-rw-r--r-- | Eigen/SPQRSupport | 2 | ||||
-rw-r--r-- | Eigen/src/SVD/JacobiSVD.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/SPQRSupport b/Eigen/SPQRSupport index 213e0284c..77016442e 100644 --- a/Eigen/SPQRSupport +++ b/Eigen/SPQRSupport @@ -26,4 +26,4 @@ #include "src/CholmodSupport/CholmodSupport.h" #include "src/SPQRSupport/SuiteSparseQRSupport.h" -#endif
\ No newline at end of file +#endif diff --git a/Eigen/src/SVD/JacobiSVD.h b/Eigen/src/SVD/JacobiSVD.h index 8e2f99b6b..4786768ff 100644 --- a/Eigen/src/SVD/JacobiSVD.h +++ b/Eigen/src/SVD/JacobiSVD.h @@ -851,7 +851,6 @@ struct solve_retval<JacobiSVD<_MatrixType, QRPreconditioner>, Rhs> // So A^{-1} = V S^{-1} U^* Matrix<Scalar, Dynamic, Rhs::ColsAtCompileTime, 0, _MatrixType::MaxRowsAtCompileTime, Rhs::MaxColsAtCompileTime> tmp; - Index diagSize = (std::min)(dec().rows(), dec().cols()); Index nonzeroSingVals = dec().nonzeroSingularValues(); tmp.noalias() = dec().matrixU().leftCols(nonzeroSingVals).adjoint() * rhs(); |