From 8fe8fd5c3de3565829f44fa1618fa605dee85083 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 2 Jan 2015 16:45:03 -0600 Subject: [PATCH] Remove deprecated function MGConstrainedDoFs::non_refinement_edge_index. --- doc/news/changes.h | 1 + include/deal.II/multigrid/mg_constrained_dofs.h | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) 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, -- 2.39.5