From: Wolfgang Bangerth Date: Mon, 5 Jan 2015 03:45:27 +0000 (-0600) Subject: Remove deprecated function SparseILU::apply_decomposition. X-Git-Tag: v8.3.0-rc1~563^2~8 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f65b5276be1b751d22a7fb5632bd362fdc38ca00;p=dealii.git Remove deprecated function SparseILU::apply_decomposition. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 952ee98343..15e529a54b 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -103,6 +103,7 @@ inconvenience this causes. - Triangulation::distort_random. - Triangulation::clear_user_pointers. - The deprecated constructor of SparseILU. +- SparseILU::apply_decomposition. diff --git a/include/deal.II/lac/sparse_ilu.h b/include/deal.II/lac/sparse_ilu.h index d60aa11d9c..d910d71de3 100644 --- a/include/deal.II/lac/sparse_ilu.h +++ b/include/deal.II/lac/sparse_ilu.h @@ -110,14 +110,6 @@ public: void decompose (const SparseMatrix &matrix, const double strengthen_diagonal=0.) DEAL_II_DEPRECATED; - /** - * @deprecated This method is deprecated, and left for backward - * compatibility. It will be removed in later versions. - */ - template - void apply_decomposition (Vector &dst, - const Vector &src) const DEAL_II_DEPRECATED; - /** * Apply the incomplete decomposition, i.e. do one forward-backward step * $dst=(LU)^{-1}src$. @@ -164,18 +156,6 @@ public: /*@}*/ //--------------------------------------------------------------------------- -template -template -inline -void -SparseILU::apply_decomposition (Vector &dst, - const Vector &src) const -{ - vmult (dst, src); -} - - - DEAL_II_NAMESPACE_CLOSE