Skip to content

Commit

Permalink
Remove deprecated TriangulationBase::compute_vertices_with_ghost_neig…
Browse files Browse the repository at this point in the history
…hbors()
  • Loading branch information
masterleinad committed Jun 7, 2021
1 parent cf01c80 commit f144f0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
4 changes: 4 additions & 0 deletions doc/news/changes/incompatibilities/20210607DanielArndt-1
@@ -0,0 +1,4 @@
Removed: The deprecated member function
TriangulationBase::compute_vertices_with_ghost_neighbors() has been removed.
<br>
(Daniel Arndt, 2021/06/07)
12 changes: 0 additions & 12 deletions include/deal.II/distributed/tria_base.h
Expand Up @@ -215,18 +215,6 @@ namespace parallel
const std::weak_ptr<const Utilities::MPI::Partitioner>
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<unsigned int,
std::set<dealii::types::subdomain_id>>
compute_vertices_with_ghost_neighbors() const;

/**
* @copydoc dealii::Triangulation::get_boundary_ids()
*
Expand Down
10 changes: 0 additions & 10 deletions source/distributed/tria_base.cc
Expand Up @@ -342,16 +342,6 @@ namespace parallel



template <int dim, int spacedim>
std::map<unsigned int, std::set<dealii::types::subdomain_id>>
TriangulationBase<dim, spacedim>::compute_vertices_with_ghost_neighbors()
const
{
return GridTools::compute_vertices_with_ghost_neighbors(*this);
}



template <int dim, int spacedim>
std::vector<types::boundary_id>
TriangulationBase<dim, spacedim>::get_boundary_ids() const
Expand Down

0 comments on commit f144f0c

Please sign in to comment.