Mercurial > repos > public > sbplib_julia
comparison 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 |
comparison
equal
deleted
inserted
replaced
1232:a8fa8c1137cc | 1233:3924c1f6ec6d |
---|---|
22 | 22 |
23 function eval_on(::Grid) end # TODO: Should return a LazyArray and index the grid | 23 function eval_on(::Grid) end # TODO: Should return a LazyArray and index the grid |
24 function refine(::Grid) end | 24 function refine(::Grid) end |
25 function coarsen(::Grid) end # Should this be here? What if it is not possible? | 25 function coarsen(::Grid) end # Should this be here? What if it is not possible? |
26 | 26 |
27 abstract type BoundaryId end | |
28 | |
29 """ | 27 """ |
30 # TODO | 28 # TODO |
31 """ | 29 """ |
32 function boundary_identifiers(::Grid) end | 30 function boundary_identifiers end |
33 """ | 31 """ |
34 # TODO | 32 # TODO |
35 """ | 33 """ |
36 function boundary_grid(::Grid, ::BoundaryId) end | 34 function boundary_grid end |
37 | 35 |
38 | 36 |
39 # TODO: Make sure that all grids implement all of the above. | 37 # TODO: Make sure that all grids implement all of the above. |
40 | 38 |
41 """ | 39 """ |