From 19e93e077e2c373850c8cb19b7bf19c2a9eadb1e Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 12 Aug 2018 12:44:38 +0200 Subject: [PATCH] Deprecate MGTools::extract_non_interface_dofs --- include/deal.II/multigrid/mg_tools.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/include/deal.II/multigrid/mg_tools.h b/include/deal.II/multigrid/mg_tools.h index 229e2ef72b..f6c7015481 100644 --- a/include/deal.II/multigrid/mg_tools.h +++ b/include/deal.II/multigrid/mg_tools.h @@ -253,9 +253,16 @@ namespace MGTools extract_inner_interface_dofs(const DoFHandler &mg_dof_handler, std::vector & interface_dofs); - + /** + * For each level in a multigrid hierarchy, produce a std::set of degrees of + * freedoms that are not located along interfaces of this level to cells that + * only exist on coarser levels. + * + * @deprecated Use extract_inner_interface_dofs() for computing the complement + * of degrees of freedoms instead. + */ template - void + DEAL_II_DEPRECATED void extract_non_interface_dofs( const DoFHandler & mg_dof_handler, std::vector> &non_interface_dofs); -- 2.39.5