Mercurial > repos > public > sbplib_julia
view grid.jl @ 176:24779d423243 boundary_conditions
Attempt to handle TensorMappings acting on expressions of TensorApplications and AbstractArrays
- Draft TensorApplicationExpression
- Add note on how broadcasting could be used for lazy evaluations of expressions
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 17 Jun 2019 09:02:19 +0200 |
parents | 074cb898f24e |
children |
line wrap: on
line source
abstract type BoundaryIdentifier end struct CartesianBoundary{Dim, R<:Region} <: BoundaryIdentifier end dim(::CartesianBoundary{Dim, R}) where {Dim, R} = Dim region(::CartesianBoundary{Dim, R}) where {Dim, R} = R include("AbstractGrid.jl") include("EquidistantGrid.jl")