comparison src/Grids/grid.jl @ 1736:863385aae454 feature/grids/curvilinear

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 10 Sep 2024 21:59:10 +0200
parents 51f0c5f895fb 3714a391545a
children 03894fd7b132
comparison
equal deleted inserted replaced
1735:36986b75bf98 1736:863385aae454
107 See also: [`refine`](@ref). 107 See also: [`refine`](@ref).
108 """ 108 """
109 function coarsen end 109 function coarsen end
110 110
111 """ 111 """
112 BoundaryIdentifier
113
114 An identifier for a boundary of a grid.
115 """
116 abstract type BoundaryIdentifier end
117
118 """
112 boundary_identifiers(g::Grid) 119 boundary_identifiers(g::Grid)
113 120
114 Identifiers for all the boundaries of `g`. 121 Identifiers for all the boundaries of `g`.
115 """ 122 """
116 function boundary_identifiers end 123 function boundary_identifiers end