From 92146726edf4c3bfa1543e7302a48b80dff860a0 Mon Sep 17 00:00:00 2001 From: "Alberto F. Martin" Date: Sun, 1 Oct 2023 19:44:44 +1100 Subject: [PATCH 1/2] Added missing remove_ghost_cells() overload for AdaptiveTriangulation --- src/Geometry.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Geometry.jl b/src/Geometry.jl index 59de99fc..d80d9cb9 100644 --- a/src/Geometry.jl +++ b/src/Geometry.jl @@ -531,6 +531,11 @@ function remove_ghost_cells(trian::Union{SkeletonTriangulation,BoundaryTriangula remove_ghost_cells(glue,trian,gids) end +function remove_ghost_cells( + trian::AdaptedTriangulation{Dc,Dp,<:Union{SkeletonTriangulation,BoundaryTriangulation}},gids) where {Dc,Dp} + remove_ghost_cells(trian.trian,gids) +end + function remove_ghost_cells(glue::FaceToFaceGlue,trian,gids) tcell_to_mcell = glue.tface_to_mface mcell_to_part = local_to_owner(gids) From 0c84f7c47beddf7bc6fe28acd3f516232e462f04 Mon Sep 17 00:00:00 2001 From: "Alberto F. Martin" Date: Sun, 1 Oct 2023 19:54:56 +1100 Subject: [PATCH 2/2] Updated NEWS --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 03bf4169..9d399950 100644 --- a/NEWS.md +++ b/NEWS.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added missing _get_cell_dof_ids_inner_space() method overload. Since PR[130](https://github.com/gridap/GridapDistributed.jl/pull/130). +- Added missing remove_ghost_cells() overload for AdaptiveTriangulation. Since PR[131](https://github.com/gridap/GridapDistributed.jl/pull/131). ### Changed