diff src/Grids/grid.jl @ 1233:3924c1f6ec6d refactor/grids

Fix empty function defs
author Jonatan Werpers <jonatan@werpers.com>
date Sun, 19 Feb 2023 22:20:25 +0100
parents 5f677cd6f0b6
children 8806f4cd6fee
line wrap: on
line diff
--- 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.