Mercurial > repos > public > sbplib_julia
changeset 142:cb9a789338a1 boundary_conditions
Add BoundaryIdentifiers
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 22 Feb 2019 15:21:01 +0100 |
parents | bb1cc9c7877c |
children | 755246142200 |
files | grid.jl |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/grid.jl Thu Feb 21 16:45:06 2019 +0100 +++ b/grid.jl Fri Feb 22 15:21:01 2019 +0100 @@ -1,7 +1,7 @@ module Grid -# TODO: Where is this used? -abstract type BoundaryId end +abstract type BoundaryIdentifier end +struct CartesianBoundary{Dim, R<:Region} <: BoundaryIdentifier end include("AbstractGrid.jl") include("EquidistantGrid.jl")