Mercurial > repos > public > sbplib_julia
view grid.jl @ 154:3193bac1c086 boundary_conditions
More sketching of how things might work
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 23 Apr 2019 09:53:34 +0200 |
parents | cb9a789338a1 |
children | 6b633624703a |
line wrap: on
line source
module Grid abstract type BoundaryIdentifier end struct CartesianBoundary{Dim, R<:Region} <: BoundaryIdentifier end include("AbstractGrid.jl") include("EquidistantGrid.jl") end