From: Daniel Arndt Date: Mon, 7 Jun 2021 17:03:06 +0000 (-0400) Subject: Remove deprecated TriangulationBase::compute_vertices_with_ghost_neighbors() X-Git-Tag: v9.4.0-rc1~1266^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12403%2Fhead;p=dealii.git Remove deprecated TriangulationBase::compute_vertices_with_ghost_neighbors() --- diff --git a/doc/news/changes/incompatibilities/20210607DanielArndt-1 b/doc/news/changes/incompatibilities/20210607DanielArndt-1 new file mode 100644 index 0000000000..292c1e3324 --- /dev/null +++ b/doc/news/changes/incompatibilities/20210607DanielArndt-1 @@ -0,0 +1,4 @@ +Removed: The deprecated member function +TriangulationBase::compute_vertices_with_ghost_neighbors() has been removed. +
+(Daniel Arndt, 2021/06/07) diff --git a/include/deal.II/distributed/tria_base.h b/include/deal.II/distributed/tria_base.h index af5bc9e106..6e34a49e7a 100644 --- a/include/deal.II/distributed/tria_base.h +++ b/include/deal.II/distributed/tria_base.h @@ -215,18 +215,6 @@ namespace parallel const std::weak_ptr global_level_cell_index_partitioner(const unsigned int level) const; - /** - * Return a map that, for each vertex, lists all the processors whose - * subdomains are adjacent to that vertex. - * - * @deprecated Use GridTools::compute_vertices_with_ghost_neighbors() - * instead of - * parallel::TriangulationBase::compute_vertices_with_ghost_neighbors(). - */ - DEAL_II_DEPRECATED virtual std::map> - compute_vertices_with_ghost_neighbors() const; - /** * @copydoc dealii::Triangulation::get_boundary_ids() * diff --git a/source/distributed/tria_base.cc b/source/distributed/tria_base.cc index 5ffb512adf..864e982435 100644 --- a/source/distributed/tria_base.cc +++ b/source/distributed/tria_base.cc @@ -342,16 +342,6 @@ namespace parallel - template - std::map> - TriangulationBase::compute_vertices_with_ghost_neighbors() - const - { - return GridTools::compute_vertices_with_ghost_neighbors(*this); - } - - - template std::vector TriangulationBase::get_boundary_ids() const