Mercurial > repos > public > sbplib_julia
view grid.jl @ 153:754c36796ac8 boundary_conditions
Add missing where statement
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 17 Apr 2019 09:43:56 +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