From: Wolfgang Bangerth Date: Fri, 2 Jan 2015 22:45:03 +0000 (-0600) Subject: Remove deprecated function MGConstrainedDoFs::non_refinement_edge_index. X-Git-Tag: v8.3.0-rc1~566^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fe8fd5c3de3565829f44fa1618fa605dee85083;p=dealii.git Remove deprecated function MGConstrainedDoFs::non_refinement_edge_index. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index e557e43dbe..68c769a8d3 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -76,6 +76,7 @@ inconvenience this causes. - DoFTools::make_sparsity_pattern with a vector-of-vector mask. - GridOutFlags::XFig::level_color. - class BlockList. + - MGConstrainedDoFs::non_refinement_edge_index
  • Removed: The config.h file no longer exports HAVE_* definitions. diff --git a/include/deal.II/multigrid/mg_constrained_dofs.h b/include/deal.II/multigrid/mg_constrained_dofs.h index b6986b4f7a..d50d833827 100644 --- a/include/deal.II/multigrid/mg_constrained_dofs.h +++ b/include/deal.II/multigrid/mg_constrained_dofs.h @@ -78,13 +78,6 @@ public: bool is_boundary_index (const unsigned int level, const types::global_dof_index index) const; - /** - * @deprecated Determine whether a dof index is at an edge that is not a - * refinement edge. - */ - bool non_refinement_edge_index (const unsigned int level, - const types::global_dof_index index) const DEAL_II_DEPRECATED; - /** * Determine whether a dof index is at the refinement edge. */ @@ -235,14 +228,6 @@ MGConstrainedDoFs::is_boundary_index (const unsigned int level, return (boundary_indices[level].find(index) != boundary_indices[level].end()); } -inline -bool -MGConstrainedDoFs::non_refinement_edge_index (const unsigned int level, - const types::global_dof_index index) const -{ - return !at_refinement_edge (level, index); -} - inline bool MGConstrainedDoFs::at_refinement_edge (const unsigned int level,