From 9a9671e62874c1557a8b9b3b3b3712290eb643a7 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Thu, 3 Apr 2014 06:28:55 +0000 Subject: [PATCH] Add Triangulation<1,spacedim>::fill_vertices_with_ghost_neighbors deleted in 32708 again because the 1D part does not use the generic code. git-svn-id: https://svn.dealii.org/trunk@32710 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/distributed/tria.cc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index 9c267cff7e..d1616196d4 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -3916,6 +3916,15 @@ namespace parallel return a; } + template <> + void + Triangulation<1,1>:: + fill_vertices_with_ghost_neighbors + (std::map > + &vertices_with_ghost_neighbors) + { + Assert (false, ExcNotImplemented()); + } template <> Triangulation<1,2>::Triangulation (MPI_Comm) @@ -3965,6 +3974,16 @@ namespace parallel { return MPI_COMM_WORLD; } + + template <> + void + Triangulation<1,2>:: + fill_vertices_with_ghost_neighbors + (std::map > + &vertices_with_ghost_neighbors) + { + Assert (false, ExcNotImplemented()); + } template <> @@ -4015,6 +4034,16 @@ namespace parallel { return MPI_COMM_WORLD; } + + template <> + void + Triangulation<1,3>:: + fill_vertices_with_ghost_neighbors + (std::map > + &vertices_with_ghost_neighbors) + { + Assert (false, ExcNotImplemented()); + } } } -- 2.39.5