Skip to content

Commit

Permalink
Merge branch 'main' of github.com:gridap/STLCutters.jl into extra_doc…
Browse files Browse the repository at this point in the history
…umentation
  • Loading branch information
pmartorell committed Aug 1, 2024
2 parents 2dc0711 + 06ab663 commit 9ca156c
Show file tree
Hide file tree
Showing 10 changed files with 200 additions and 304 deletions.
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.3.0] - 2024-08-01

### Added
Expand All @@ -15,7 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- The type `Polyhedron` has been moved to `Gridap` as `GeneralPolytope`. Since [#33](https://github.com/gridap/STLCutters.jl/pull/33)
- `Polyhedron` is now defined in `Gridap` as `GeneralPolytope{3}<Polytope{3}`. Its internal `data` is renamed to `metadata`. Since [#33](https://github.com/gridap/STLCutters.jl/pull/33)
- `get_data(::Polyhedron)` is renamed to `get_metadata(::Polyhedron)`.
- `simplexify(::Polyhedron)` now returns the same data structure as `simplexify(::Polytope)`. The previous implementation is renamed to `simplexify_interior`.
- `check_graph` is renamed to `check_polytope_graph`.

## [0.2.1] - 2024-07-11

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ AlgebraicMultigrid = "0.5, 0.6"
Downloads = "1.4"
FileIO = "1.6"
FillArrays = "0.11, 0.13, 1"
Gridap = "0.18"
Gridap = "0.18.3"
GridapDistributed = "0.4"
GridapEmbedded = "0.9.4"
IterativeSolvers = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion src/Distributed.jl
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ end

# PR @ GridapDistributed.jl

function Gridap.ReferenceFEs.simplexify(model::DistributedDiscreteModel{D};kwargs...) where D
function _simplexify(model::DistributedDiscreteModel{D};kwargs...) where D
models = map(local_views(model)) do m
Gridap.ReferenceFEs.simplexify(m;kwargs...)
end
Expand Down
Loading

0 comments on commit 9ca156c

Please sign in to comment.