Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gridap/GridapDistributed.jl into …
Browse files Browse the repository at this point in the history
…adaptivity
  • Loading branch information
JordiManyer committed Jul 18, 2024
2 parents 1638b5a + b6a516c commit 4df7293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Added distributed refinement of unstructured meshes. Since PR[#149](https://github.com/gridap/GridapDistributed.jl/pull/149).

- Added keyword arguments in the signature of the constructor of `DistributedMeasure`. Since PR[#150](https://github.com/gridap/GridapDistributed.jl/pull/150).

## [0.4.2] 2024-07-4

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/CellData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ end

local_views(a::DistributedMeasure) = a.measures

function CellData.Measure(t::DistributedTriangulation,args...)
function CellData.Measure(t::DistributedTriangulation,args...;kwargs...)
measures = map(t.trians) do trian
Measure(trian,args...)
Measure(trian,args...;kwargs...)
end
DistributedMeasure(measures,t)
end
Expand Down

0 comments on commit 4df7293

Please sign in to comment.