From e63285d517e6663ae8ff6b8c4220938812610dea Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 10 Apr 2015 17:48:38 +0200 Subject: [PATCH] Remove vmult_add and Tvmult_add from SparseDirectUMFPACK --- include/deal.II/lac/sparse_direct.h | 14 -------------- source/lac/sparse_direct.cc | 19 ------------------- 2 files changed, 33 deletions(-) diff --git a/include/deal.II/lac/sparse_direct.h b/include/deal.II/lac/sparse_direct.h index c5c0669493..1f455e0215 100644 --- a/include/deal.II/lac/sparse_direct.h +++ b/include/deal.II/lac/sparse_direct.h @@ -185,20 +185,6 @@ public: void Tvmult (BlockVector &dst, const BlockVector &src) const; - /** - * Same as vmult(), but adding to the result to @p dst instead of - * overwriting the previous contents of the vector. - */ - void vmult_add (Vector &dst, - const Vector &src) const; - - /** - * Same as before, but uses the transpose of the matrix, i.e. this function - * multiplies with $A^{-T}$. - */ - void Tvmult_add (Vector &dst, - const Vector &src) const; - /** * @} */ diff --git a/source/lac/sparse_direct.cc b/source/lac/sparse_direct.cc index fa68f5e210..18a9ddf813 100644 --- a/source/lac/sparse_direct.cc +++ b/source/lac/sparse_direct.cc @@ -469,25 +469,6 @@ SparseDirectUMFPACK::Tvmult ( } -void -SparseDirectUMFPACK::vmult_add ( - Vector &, - const Vector &) const -{ - Assert(false, ExcNotImplemented()); -} - - -void -SparseDirectUMFPACK::Tvmult_add ( - Vector &, - const Vector &) const -{ - Assert(false, ExcNotImplemented()); -} - - - // explicit instantiations for SparseMatrixUMFPACK #define InstantiateUMFPACK(MATRIX) \ template \ -- 2.39.5