From: Timo Heister Date: Sun, 13 Aug 2017 00:20:22 +0000 (-0600) Subject: clean up p4est::iterate X-Git-Tag: v9.0.0-rc1~1276^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc934b3278477835dcd86414eeac481ec4781b5f;p=dealii.git clean up p4est::iterate --- diff --git a/include/deal.II/distributed/p4est_wrappers.h b/include/deal.II/distributed/p4est_wrappers.h index 42d9e0f27e..a6d687e2ef 100644 --- a/include/deal.II/distributed/p4est_wrappers.h +++ b/include/deal.II/distributed/p4est_wrappers.h @@ -472,16 +472,14 @@ namespace internal static size_t (&connectivity_memory_used) (types<3>::connectivity *p4est); - template - static void iterate(dealii::internal::p4est::types<3>::forest *parallel_forest, - dealii::internal::p4est::types<3>::ghost *parallel_ghost, - void *user_data); + static const unsigned int max_level = P8EST_MAXLEVEL; }; + /** * This struct templatizes the p4est iterate structs and function * prototypes, which are used to execute callback functions for faces, @@ -565,18 +563,15 @@ namespace internal const typename types::topidx coarse_grid_cell); + /** - * This is the callback data structure used to fill - * vertices_with_ghost_neighbors via the p4est_iterate tool + * Compute the ghost neighbors surrounding each vertex by querying p4est */ template - struct FindGhosts - { - const typename dealii::parallel::distributed::Triangulation *triangulation; - sc_array_t *subids; - std::map > *vertices_with_ghost_neighbors; - }; - + std::map > + compute_vertices_with_ghost_neighbors(const dealii::parallel::distributed::Triangulation &tria, + typename dealii::internal::p4est::types::forest *parallel_forest, + typename dealii::internal::p4est::types::ghost *parallel_ghost); } } diff --git a/source/distributed/p4est_wrappers.cc b/source/distributed/p4est_wrappers.cc index 41cb8266aa..155d0e0729 100644 --- a/source/distributed/p4est_wrappers.cc +++ b/source/distributed/p4est_wrappers.cc @@ -35,6 +35,18 @@ namespace internal return out_cell; } + /** + * This is the callback data structure used to fill + * vertices_with_ghost_neighbors via the p4est_iterate tool + */ + template + struct FindGhosts + { + const typename dealii::parallel::distributed::Triangulation *triangulation; + sc_array_t *subids; + std::map > *vertices_with_ghost_neighbors; + }; + /** At a corner (vertex), determine if any of the neighboring cells are * ghosts. If there are, find out their subdomain ids, and if this is a @@ -436,22 +448,48 @@ namespace internal size_t (&functions<2>::connectivity_memory_used) (types<2>::connectivity *p4est) = p4est_connectivity_memory_used; - template - void functions<2>::iterate(dealii::internal::p4est::types<2>::forest *parallel_forest, - dealii::internal::p4est::types<2>::ghost *parallel_ghost, - void *user_data) + template + std::map > + compute_vertices_with_ghost_neighbors(const typename dealii::parallel::distributed::Triangulation &tria, + typename dealii::internal::p4est::types::forest *parallel_forest, + typename dealii::internal::p4est::types::ghost *parallel_ghost) { - p4est_iterate (parallel_forest, parallel_ghost, user_data, - nullptr, - find_ghosts_face<2,spacedim>, - find_ghosts_corner<2,spacedim>); + std::map > vertices_with_ghost_neighbors; + + dealii::internal::p4est::FindGhosts fg; + fg.subids = sc_array_new (sizeof (dealii::types::subdomain_id)); + fg.triangulation = &tria; + fg.vertices_with_ghost_neighbors = &vertices_with_ghost_neighbors; + + switch (dim) + { + case 2: + p4est_iterate (reinterpret_cast::forest *>(parallel_forest), + reinterpret_cast::ghost *>(parallel_ghost), + static_cast(&fg), + NULL, find_ghosts_face<2,spacedim>, find_ghosts_corner<2,spacedim>); + break; + + case 3: + p8est_iterate (reinterpret_cast::forest *>(parallel_forest), + reinterpret_cast::ghost *>(parallel_ghost), + static_cast(&fg), + NULL, find_ghosts_face<3,3>, find_ghosts_edge<3,3>, find_ghosts_corner<3,3>); + break; + + default: + Assert (false, ExcNotImplemented()); + } + + sc_array_destroy (fg.subids); + + return vertices_with_ghost_neighbors; } const unsigned int functions<2>::max_level; - int (&functions<3>::quadrant_compare) (const void *v1, const void *v2) = p8est_quadrant_compare; @@ -638,23 +676,10 @@ namespace internal size_t (&functions<3>::connectivity_memory_used) (types<3>::connectivity *p4est) = p8est_connectivity_memory_used; - template - void functions<3>::iterate(dealii::internal::p4est::types<3>::forest *parallel_forest, - dealii::internal::p4est::types<3>::ghost *parallel_ghost, - void *user_data) - { - p8est_iterate (parallel_forest, parallel_ghost, user_data, - nullptr, - find_ghosts_face<3,spacedim>, - find_ghosts_edge<3,spacedim>, - find_ghosts_corner<3,spacedim>); - } - const unsigned int functions<3>::max_level; - template void init_quadrant_children diff --git a/source/distributed/p4est_wrappers.inst.in b/source/distributed/p4est_wrappers.inst.in index 464352a06c..69df43a82b 100644 --- a/source/distributed/p4est_wrappers.inst.in +++ b/source/distributed/p4est_wrappers.inst.in @@ -71,11 +71,11 @@ for (deal_II_dimension, deal_II_space_dimension : DIMENSIONS) #if deal_II_dimension > 1 #if deal_II_space_dimension >= deal_II_dimension template - void - functions:: - iterate(dealii::internal::p4est::types::forest *parallel_forest, - dealii::internal::p4est::types::ghost *parallel_ghost, - void *user_data); + std::map > + compute_vertices_with_ghost_neighbors(const dealii::parallel::distributed::Triangulation &tria, + typename dealii::internal::p4est::types::forest *parallel_forest, + typename dealii::internal::p4est::types::ghost *parallel_ghost); + #endif #endif \} diff --git a/source/distributed/tria.cc b/source/distributed/tria.cc index 0b46eaf08e..3333a29ac6 100644 --- a/source/distributed/tria.cc +++ b/source/distributed/tria.cc @@ -3387,20 +3387,11 @@ namespace parallel { Assert (dim>1, ExcNotImplemented()); - std::map > vertices_with_ghost_neighbors; + return dealii::internal::p4est::compute_vertices_with_ghost_neighbors (*this, + this->parallel_forest, + this->parallel_ghost); - dealii::internal::p4est::FindGhosts fg; - fg.subids = sc_array_new (sizeof (dealii::types::subdomain_id)); - fg.triangulation = this; - fg.vertices_with_ghost_neighbors = &vertices_with_ghost_neighbors; - dealii::internal::p4est::functions::template iterate (this->parallel_forest, - this->parallel_ghost, - static_cast(&fg)); - - sc_array_destroy (fg.subids); - - return vertices_with_ghost_neighbors; }