Skip to content

Commit 361f7f9

Browse files
authored
Merge pull request #83 from pmartorell/bump_version_0.9.2
Bump version 0.9.2
2 parents 8f22018 + a05d4d8 commit 361f7f9

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.9.2] - 2024-04-26
8+
9+
### Added
10+
- Distributed extension of the cutters and aggregation. The distributed methods work on top of [GridapDistributed.jl](https://github.com/gridap/GridapDistributed.jl) and [PartitionedArrays.jl](https://github.com/fverdugo/PartitionedArrays.jl). Since PR [#81](https://github.com/gridap/GridapEmbedded.jl/pull/81).
11+
712
## [0.9.1] - 2024-04-12
813

914
### Changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GridapEmbedded"
22
uuid = "8838a6a3-0006-4405-b874-385995508d5d"
33
authors = ["Francesc Verdugo <f.verdugo.rojano@vu.nl>", "Eric Neiva <eric.neiva@college-de-france.fr>", "Santiago Badia <santiago.badia@monash.edu>"]
4-
version = "0.9.1"
4+
version = "0.9.2"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"

src/Interfaces/EmbeddedDiscretizations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ end
253253
function Triangulation(cut::EmbeddedDiscretization,in_or_out::Tuple,geo::CSG.Geometry)
254254
trian1 = Triangulation(cut,in_or_out[1],geo)
255255
trian2 = Triangulation(cut,in_or_out[2],geo)
256-
lazy_append(trian1,trian2)
256+
num_cells(trian1) == 0 ? trian2 : lazy_append(trian1,trian2)
257257
end
258258

259259
function Triangulation(cut::EmbeddedDiscretization,in_or_out::CutInOrOut,geo::CSG.Geometry)

src/Interfaces/EmbeddedFacetDiscretizations.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ function BoundaryTriangulation(
128128

129129
trian1 = BoundaryTriangulation(facets,cut,in_or_out[1],geo)
130130
trian2 = BoundaryTriangulation(facets,cut,in_or_out[2],geo)
131-
lazy_append(trian1,trian2)
131+
num_cells(trian1) == 0 ? trian2 : lazy_append(trian1,trian2)
132+
132133
end
133134

134135
function BoundaryTriangulation(

0 commit comments

Comments
 (0)