changeset 1264:7a67935d3f3a refactor/grids

grid.jl: Fix function defs and add todos for documentation
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 24 Feb 2023 20:46:29 +0100
parents b0819f6b9d4a
children 9c9ea2900250
files src/Grids/grid.jl
diffstat 1 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/Grids/grid.jl	Fri Feb 24 20:44:36 2023 +0100
+++ b/src/Grids/grid.jl	Fri Feb 24 20:46:29 2023 +0100
@@ -14,13 +14,21 @@
 Base.ndims(::Grid{T,D}) where {T,D} = D
 Base.eltype(::Type{<:Grid{T}}) where T = T
 
-function refine(::Grid) end
-function coarsen(::Grid) end # Should this be here? What if it is not possible?
+"""
+# TODO
+"""
+function refine end
+
+"""
+# TODO
+"""
+function coarsen end
 
 """
 # TODO
 """
 function boundary_identifiers end
+
 """
 # TODO
 """