From 434a2fc4a41682b90275426097653b07a37286d7 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Thu, 8 May 2025 23:02:10 +0000 Subject: [PATCH] Fix obsolete comment in InverseImpl.h. We use PartialPivLU for the general case. --- Eigen/src/LU/InverseImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/LU/InverseImpl.h b/Eigen/src/LU/InverseImpl.h index 57fd67735..fe8859e9a 100644 --- a/Eigen/src/LU/InverseImpl.h +++ b/Eigen/src/LU/InverseImpl.h @@ -268,7 +268,7 @@ struct Assignment, * \note This matrix must be invertible, otherwise the result is undefined. If you need an * invertibility check, do the following: * \li for fixed sizes up to 4x4, use computeInverseAndDetWithCheck(). - * \li for the general case, use class FullPivLU. + * \li for the general case, use class PartialPivLU. * * Example: \include MatrixBase_inverse.cpp * Output: \verbinclude MatrixBase_inverse.out