Mercurial > repos > public > sbplib_julia
comparison grid.jl @ 142:cb9a789338a1 boundary_conditions
Add BoundaryIdentifiers
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 22 Feb 2019 15:21:01 +0100 |
parents | 614b56a017b9 |
children | 6b633624703a |
comparison
equal
deleted
inserted
replaced
135:bb1cc9c7877c | 142:cb9a789338a1 |
---|---|
1 module Grid | 1 module Grid |
2 | 2 |
3 # TODO: Where is this used? | 3 abstract type BoundaryIdentifier end |
4 abstract type BoundaryId end | 4 struct CartesianBoundary{Dim, R<:Region} <: BoundaryIdentifier end |
5 | 5 |
6 include("AbstractGrid.jl") | 6 include("AbstractGrid.jl") |
7 include("EquidistantGrid.jl") | 7 include("EquidistantGrid.jl") |
8 | 8 |
9 end | 9 end |