comparison src/Grids/grid.jl @ 1748:03894fd7b132 feature/grids/manifolds

Merge feature/grids/curvilinear
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 11 Sep 2024 15:41:58 +0200
parents 13a7a4ff49e3 863385aae454
children 76c6bde84656
comparison
equal deleted inserted replaced
1695:a4c52ae93b11 1748:03894fd7b132
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