Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing _get_cell_dof_ids_inner_space() method overload #130

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading