From 58fc972ed328a37921c9b9dc66ab45b2f125c664 Mon Sep 17 00:00:00 2001 From: Stuart Glaser Date: Mon, 21 Jun 2010 21:29:45 -0700 Subject: [PATCH] LU on limited-size matrices no longer allocates for temporaries. --- Eigen/src/LU/LU.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Eigen/src/LU/LU.h b/Eigen/src/LU/LU.h index ef1487c6a..862fa066c 100644 --- a/Eigen/src/LU/LU.h +++ b/Eigen/src/LU/LU.h @@ -63,10 +63,10 @@ template class LU typedef typename MatrixType::Scalar Scalar; typedef typename NumTraits::Real RealScalar; - typedef Matrix IntRowVectorType; - typedef Matrix IntColVectorType; - typedef Matrix RowVectorType; - typedef Matrix ColVectorType; + typedef Matrix IntRowVectorType; + typedef Matrix IntColVectorType; + typedef Matrix RowVectorType; + typedef Matrix ColVectorType; enum { MaxSmallDimAtCompileTime = EIGEN_SIZE_MIN( MatrixType::MaxColsAtCompileTime,