diff src/Grids/grid.jl @ 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 5e28ae42caf2
children a4ddae8b5d49
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
 """