From: Wolfgang Bangerth Date: Fri, 23 Jan 2015 13:06:06 +0000 (-0600) Subject: Remove deprecated constructors of SparsityPattern iterators. X-Git-Tag: v8.3.0-rc1~518^2~11 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfcf85f70645b42f909e179f3b93d35452bb9397;p=dealii.git Remove deprecated constructors of SparsityPattern iterators. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 0870c44673..ae383178fe 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -154,6 +154,7 @@ inconvenience this causes. optimize_diagonal argument. - Mapping::transform_covariant and Mapping::transform_contravariant. - The typedef CompressedBlockSparsityPattern. + - The deprecated constructors of SparsityPattern iterator classes.
This release also removes the deprecated class MGDoFHandler. The functionality of this class had previously been incorporated into diff --git a/include/deal.II/lac/sparsity_pattern.h b/include/deal.II/lac/sparsity_pattern.h index a528322d6b..f271684eed 100644 --- a/include/deal.II/lac/sparsity_pattern.h +++ b/include/deal.II/lac/sparsity_pattern.h @@ -119,16 +119,6 @@ namespace SparsityPatternIterators class Accessor { public: - /** - * Constructor. - * - * @deprecated This constructor is deprecated. Use the other constructor - * with a global index instead. - */ - Accessor (const SparsityPattern *matrix, - const size_type row, - const size_type index) DEAL_II_DEPRECATED; - /** * Constructor. */ @@ -244,17 +234,6 @@ namespace SparsityPatternIterators class Iterator { public: - /** - * Constructor. Create an iterator into the sparsity pattern @p sp for the - * given row and the index within it. - * - * @deprecated This constructor is deprecated. Use the other constructor - * with a global index instead. - */ - Iterator (const SparsityPattern *sp, - const size_type row, - const size_type index) DEAL_II_DEPRECATED; - /** * Constructor. Create an iterator into the sparsity pattern @p sp for the * given global index (i.e., the index of the given element counting from @@ -1248,17 +1227,6 @@ private: namespace SparsityPatternIterators { - inline - Accessor:: - Accessor (const SparsityPattern *sparsity_pattern, - const size_type r, - const size_type i) - : - sparsity_pattern(sparsity_pattern), - index_within_sparsity(sparsity_pattern->rowstart[r]+i) - {} - - inline Accessor:: Accessor (const SparsityPattern *sparsity_pattern, @@ -1357,16 +1325,6 @@ namespace SparsityPatternIterators - inline - Iterator::Iterator (const SparsityPattern *sparsity_pattern, - const size_type r, - const size_type i) - : - accessor(sparsity_pattern, sparsity_pattern->rowstart[r]+i) - {} - - - inline Iterator::Iterator (const SparsityPattern *sparsity_pattern, const std::size_t i)