aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU/SparseLU_column_bmod.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-07-30 19:28:31 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-07-30 19:28:31 +0200
commite88817cc513278c82f7b8ca2b4752e43876ed29d (patch)
treeba5f062ef95ec2c7ae7239d9c328e52f2e3d1b56 /Eigen/src/SparseLU/SparseLU_column_bmod.h
parent8f6d5eacb4af8fc31301625652a5017e6c2e50eb (diff)
add another missing .noalias()
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU_column_bmod.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU_column_bmod.h2
1 files changed, 1 insertions, 1 deletions
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<Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > ( &(lusup.data()[luptr+nsupc]), nrow, nsupc, OuterStride<>(nsupr) );
VectorBlock<ScalarVector> l(lusup, ufirst+nsupc, nrow);
- l = l - A * u;
+ l.noalias() -= A * u;
} // End if fst_col
return 0;