From 25b6359a5e06b9fc8ac98771d52d792cdd33bdcd Mon Sep 17 00:00:00 2001 From: Eric Neiva Date: Mon, 20 Nov 2023 18:11:01 +0100 Subject: [PATCH 1/3] Set compat for AbstractTrees as in Gridap AbstractTrees v0.3 is incompatible with latest versions of SymbolicUtils (see https://github.com/JuliaSymbolics/SymbolicUtils.jl/pull/564). Letting GE use AbstractTrees v0.4, as in Gridap, s.t. it can be composed with SymbolicUtils. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5c9c43b..7bb24c5 100644 --- a/Project.toml +++ b/Project.toml @@ -15,7 +15,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] -AbstractTrees = "0.3.3" +AbstractTrees = "0.3.3, 0.4" Combinatorics = "1" FillArrays = "0.10, 0.11, 0.12, 0.13" Gridap = "0.17.13" From 060763c1989fd756396765d427755b46af0b972d Mon Sep 17 00:00:00 2001 From: Eric Neiva Date: Mon, 11 Dec 2023 18:57:12 +0100 Subject: [PATCH 2/3] Remove keyword no longer known by Documenter --- docs/make.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 9f58d40..c09398c 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -9,7 +9,6 @@ makedocs(; repo="https://github.com/gridap/GridapEmbedded.jl/blob/{commit}{path}#L{line}", sitename="GridapEmbedded.jl", authors="Francesc Verdugo ", - assets=String[], ) deploydocs(; From f993330b9e158e4cb4e9ea0f7fcf97795ef31c56 Mon Sep 17 00:00:00 2001 From: Eric Neiva Date: Mon, 11 Dec 2023 19:30:24 +0100 Subject: [PATCH 3/3] Deleted two rogue docstrings not included in the manual --- src/Interfaces/Cutters.jl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Interfaces/Cutters.jl b/src/Interfaces/Cutters.jl index e806c41..5104430 100644 --- a/src/Interfaces/Cutters.jl +++ b/src/Interfaces/Cutters.jl @@ -1,8 +1,5 @@ abstract type Cutter <: GridapType end -""" - cut(cutter::Cutter,background,geom) -> EmbeddedDiscretization -""" function cut(cutter::Cutter,background,geom) @abstractmethod end @@ -11,9 +8,6 @@ function compute_bgcell_to_inoutcut(cutter::Cutter,background,geom) @abstractmethod end -""" - cut_facets(cutter::Cutter,background,geom) -> EmbeddedDiscretization -""" function cut_facets(cutter::Cutter,background,geom) @abstractmethod end