Skip to content

Commit

Permalink
Merge branch 'missing_get_cell_dof_ids_inner_space_overload' of githu…
Browse files Browse the repository at this point in the history
…b.com:gridap/GridapDistributed.jl into missing_remove_ghost_cells_overload
  • Loading branch information
amartinhuertas committed Oct 1, 2023
2 parents 9214672 + 86faf67 commit 18d2250
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

- Added missing _get_cell_dof_ids_inner_space() method overload. Since PR[130](https://github.com/gridap/GridapDistributed.jl/pull/130).

### Changed

- Updated compat for FillArrays to v1. Since PR[127](https://github.com/gridap/GridapDistributed.jl/pull/127).
Expand Down
8 changes: 7 additions & 1 deletion src/Adaptivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,13 @@ end

function _get_cell_dof_ids_inner_space(s::FESpaceWithLinearConstraints)
get_cell_dof_ids(s.space)
end
end

# Required in order to avoid returning the results of get_cell_dof_ids(space)
# in the case of a FESpaceWithLinearConstraints wrapped around a TrialFESpace
function _get_cell_dof_ids_inner_space(s::TrialFESpace)
_get_cell_dof_ids_inner_space(s.space)
end

function get_redistribute_free_values_cache(fv_new::Union{PVector,Nothing},
Uh_new::Union{DistributedSingleFieldFESpace,Nothing},
Expand Down

0 comments on commit 18d2250

Please sign in to comment.