From: bangerth Date: Sun, 30 Dec 2012 02:24:10 +0000 (+0000) Subject: Un-deprecate a function. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9382a75e6560c7c6f4b960e783648a8815e3b5a2;p=dealii-svn.git Un-deprecate a function. git-svn-id: https://svn.dealii.org/branches/branch_deprecated@27875 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/grid_tools.h b/deal.II/include/deal.II/grid/grid_tools.h index 633c6af580..5ef9082271 100644 --- a/deal.II/include/deal.II/grid/grid_tools.h +++ b/deal.II/include/deal.II/grid/grid_tools.h @@ -267,19 +267,6 @@ namespace GridTools const Point &p); /** - * @deprecated This function might - * be acceptable to find a patch - * around a single vertex, but it - * wastes resources creating - * patches around all vertices. The - * function may fail on - * anisotropic meshes, and an easy - * fix is not obvious. Therefore, - * it should be replaced by a - * function which computes all - * active vertex patches by looping - * over cells. - * * Find and return a vector of * iterators to active cells that * surround a given vertex with index @p vertex_index. @@ -295,11 +282,15 @@ namespace GridTools * always be either a vertex of a cell or be * a hanging node located on a face or an * edge of it. + * + * @note It isn't entirely clear at this time whether the function + * does the right thing with anisotropically refined meshes. It needs + * to be checked for this case. */ template class Container, int spacedim> std::vector::active_cell_iterator> find_cells_adjacent_to_vertex (const Container &container, - const unsigned int vertex_index) DEAL_II_DEPRECATED; + const unsigned int vertex_index); /**