Mercurial > repos > public > sbplib_julia
changeset 1243:783284b3e438 refactor/grids
Fix include errors
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 21 Feb 2023 21:36:49 +0100 |
parents | 917cb8acbc17 |
children | eb19cd128157 |
files | src/Grids/Grids.jl |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
diff -r 917cb8acbc17 -r 783284b3e438 src/Grids/Grids.jl --- a/src/Grids/Grids.jl Tue Feb 21 21:13:37 2023 +0100 +++ b/src/Grids/Grids.jl Tue Feb 21 21:36:49 2023 +0100 @@ -25,11 +25,12 @@ export refine export coarsen +abstract type BoundaryIdentifier end + include("grid.jl") -include("boundary_identifier.jl") +include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") -abstract type BoundaryIdentifier end end # module