From: Wolfgang Bangerth Date: Fri, 2 Jan 2015 22:45:56 +0000 (-0600) Subject: Remove deprecated function MGConstrainedDoFs::at_refinement_edge_boundary. X-Git-Tag: v8.3.0-rc1~566^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e0b8164286e6c82138576a5cb50413c9578b3f7;p=dealii.git Remove deprecated function MGConstrainedDoFs::at_refinement_edge_boundary. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 68c769a8d3..d3796dcee4 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -77,6 +77,7 @@ inconvenience this causes. - GridOutFlags::XFig::level_color. - class BlockList. - MGConstrainedDoFs::non_refinement_edge_index + - MGConstrainedDoFs::at_refinement_edge_boundary
  • 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 d50d833827..fe93e69520 100644 --- a/include/deal.II/multigrid/mg_constrained_dofs.h +++ b/include/deal.II/multigrid/mg_constrained_dofs.h @@ -84,15 +84,6 @@ public: bool at_refinement_edge (const unsigned int level, const types::global_dof_index index) const; - /** - * @deprecated Use is_boundary_index() instead. The logic behind this - * function here is unclear and for practical purposes, the other is needed. - * - * Determine whether a dof index is subject to a boundary constraint. - */ - bool at_refinement_edge_boundary (const unsigned int level, - const types::global_dof_index index) const DEAL_II_DEPRECATED; - /** * Return the indices of dofs for each level that are subject to boundary * constraints. @@ -239,14 +230,6 @@ MGConstrainedDoFs::at_refinement_edge (const unsigned int level, } -inline -bool -MGConstrainedDoFs::at_refinement_edge_boundary (const unsigned int level, - const types::global_dof_index index) const -{ - return is_boundary_index(level, index); -} - inline const std::vector > & MGConstrainedDoFs::get_boundary_indices () const