From 4c7f5d5d1278dc837c182df5cdc37f6fe5f35dff Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 25 Feb 2015 09:03:04 -0500 Subject: [PATCH] SparseMIC optimization It seems like we are computing a mat-vec just to overwrite it a couple of lines later. Remove it. --- include/deal.II/lac/sparse_mic.templates.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/deal.II/lac/sparse_mic.templates.h b/include/deal.II/lac/sparse_mic.templates.h index fb47824243..5a9e095e13 100644 --- a/include/deal.II/lac/sparse_mic.templates.h +++ b/include/deal.II/lac/sparse_mic.templates.h @@ -143,7 +143,6 @@ void SparseMIC::vmult (Vector &dst, const Vector &src) const { - SparseLUDecomposition::vmult (dst, src); Assert (dst.size() == src.size(), ExcDimensionMismatch(dst.size(), src.size())); Assert (dst.size() == this->m(), ExcDimensionMismatch(dst.size(), this->m())); -- 2.39.5