comparison src/Grids/grid.jl @ 1720:7fdc348f91ff feature/lazy_tensors/sparse_conversions

Merge with default
author Vidar Stiernström <vidar.stiernstrom@gmail.com>
date Thu, 05 Sep 2024 08:26:57 -0700
parents 3714a391545a
children 863385aae454
comparison
equal deleted inserted replaced
1709:40dffe6e2ecb 1720:7fdc348f91ff
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