comparison sbpD2.jl @ 11:7f075bacbd68

merge with default
author Ylva Rydin <ylva.rydin@telia.com>
date Mon, 17 Dec 2018 14:42:38 +0100
parents 433008d3b7d3
children 55fea1ceb6aa
comparison
equal deleted inserted replaced
10:bed51234616b 11:7f075bacbd68
1 1
2 struct D2{T}
3 quadratureClosure::Vector{T}
4 innerStencil::Stencil
5 closureStencils::Vector{Stencil} # TBD: Should this be a tuple?
6 eClosure::Vector{T}
7 dClosure::Vector{T}
8 end
9
10 function closureSize(D::D2)::Int
11 return length(quadratureClosure)
12 end