aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-16 00:03:17 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-16 00:03:17 +0200
commit34490f1493f8111c131e471a3dc7f6fbe5687404 (patch)
treeed6a86263f90ffc965139ce2b91814d29c0c3311 /Eigen/src/Core/Product.h
parent97c9445c60f307f6a59a212872173c256adf2acd (diff)
* bugfixes in Product, and test/product_selfadjoint
* speed up in the extraction of the matrix Q in Tridiagonalization
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 6feede458..93e318035 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -880,7 +880,7 @@ inline Derived& MatrixBase<Derived>::lazyAssign(const Product<Lhs,Rhs,CacheFrien
}
else
{
- lazyAssign(static_cast<const MatrixBase<Product<Lhs,Rhs,CacheFriendlyProduct> > &>(product));
+ lazyAssign(Product<Lhs,Rhs,NormalProduct>(product.lhs(),product.rhs()));
}
return derived();
}