From b200fb90201b287f3dd09fcc8ed90adaadbec25b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 25 Jan 2015 12:19:03 -0600 Subject: [PATCH] Remove deprecated version of MGTools::count_dofs_per_component. --- doc/news/changes.h | 1 + include/deal.II/multigrid/mg_tools.h | 10 ---------- source/multigrid/mg_tools.cc | 12 ------------ source/multigrid/mg_tools.inst.in | 3 --- 4 files changed, 1 insertion(+), 25 deletions(-) diff --git a/doc/news/changes.h b/doc/news/changes.h index 72bde701ca..a38e733781 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -203,6 +203,7 @@ inconvenience this causes. - GridTools::create_union_triangulation. - GridTools::extract_boundary_mesh. - PreconditionBlock::size. + - MGTools::count_dofs_per_component.
This release also removes the deprecated class MGDoFHandler. The functionality of this class had previously been incorporated into diff --git a/include/deal.II/multigrid/mg_tools.h b/include/deal.II/multigrid/mg_tools.h index b02ecd5d95..ce4e0a522d 100644 --- a/include/deal.II/multigrid/mg_tools.h +++ b/include/deal.II/multigrid/mg_tools.h @@ -169,16 +169,6 @@ namespace MGTools const bool only_once = false, std::vector target_component = std::vector()); - /** - * @deprecated Wrapper for the other function with same name, introduced for - * compatibility. - */ - template - void - count_dofs_per_component (const DoFHandler &mg_dof, - std::vector > &result, - std::vector target_component) DEAL_II_DEPRECATED; - /** * Generate a list of those degrees of freedom at the boundary of the domain * that should be eliminated from the matrix because they will be diff --git a/source/multigrid/mg_tools.cc b/source/multigrid/mg_tools.cc index 3d12ef7f92..d23cf4a6d3 100644 --- a/source/multigrid/mg_tools.cc +++ b/source/multigrid/mg_tools.cc @@ -1059,18 +1059,6 @@ namespace MGTools - template - void - count_dofs_per_component (const DoFHandler &dof_handler, - std::vector > &result, - std::vector target_component) - { - count_dofs_per_component (dof_handler, result, - false, target_component); - } - - - template void count_dofs_per_block ( diff --git a/source/multigrid/mg_tools.inst.in b/source/multigrid/mg_tools.inst.in index f3aa07f5b1..8a5981891f 100644 --- a/source/multigrid/mg_tools.inst.in +++ b/source/multigrid/mg_tools.inst.in @@ -84,9 +84,6 @@ for (deal_II_dimension : DIMENSIONS) template void count_dofs_per_component ( const DoFHandler&, std::vector >&, bool, std::vector); - template void count_dofs_per_component ( - const DoFHandler&, std::vector >&, - std::vector); template void count_dofs_per_block ( const DoFHandler&, std::vector >&, std::vector); -- 2.39.5