From e88817cc513278c82f7b8ca2b4752e43876ed29d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 30 Jul 2012 19:28:31 +0200 Subject: [PATCH] add another missing .noalias() --- Eigen/src/SparseLU/SparseLU_column_bmod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/SparseLU/SparseLU_column_bmod.h b/Eigen/src/SparseLU/SparseLU_column_bmod.h index 5c26bd70e..6bc6d80ea 100644 --- a/Eigen/src/SparseLU/SparseLU_column_bmod.h +++ b/Eigen/src/SparseLU/SparseLU_column_bmod.h @@ -180,7 +180,7 @@ int LU_column_bmod(const int jcol, const int nseg, BlockScalarVector& dense, Sca new (&A) Map, 0, OuterStride<> > ( &(lusup.data()[luptr+nsupc]), nrow, nsupc, OuterStride<>(nsupr) ); VectorBlock l(lusup, ufirst+nsupc, nrow); - l = l - A * u; + l.noalias() -= A * u; } // End if fst_col return 0;