Mercurial > repos > public > sbplib_julia
changeset 1233:3924c1f6ec6d refactor/grids
Fix empty function defs
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Sun, 19 Feb 2023 22:20:25 +0100 |
| parents | a8fa8c1137cc |
| children | 8806f4cd6fee |
| files | src/Grids/grid.jl |
| diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
diff -r a8fa8c1137cc -r 3924c1f6ec6d src/Grids/grid.jl --- a/src/Grids/grid.jl Sun Feb 19 22:07:57 2023 +0100 +++ b/src/Grids/grid.jl Sun Feb 19 22:20:25 2023 +0100 @@ -24,16 +24,14 @@ function refine(::Grid) end function coarsen(::Grid) end # Should this be here? What if it is not possible? -abstract type BoundaryId end - """ # TODO """ -function boundary_identifiers(::Grid) end +function boundary_identifiers end """ # TODO """ -function boundary_grid(::Grid, ::BoundaryId) end +function boundary_grid end # TODO: Make sure that all grids implement all of the above.
