Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 938:4a9a96d51940 bugfix/tensor_application_1d_cartesian_index
Fix dispatch issue when indexing a 1D TensorApplication with a CartiesianIndex
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 09 Mar 2022 11:19:17 +0100 |
parents | f0532b9289b7 |
children | 1784b1c0af3e aa4875f9a530 |
line wrap: on
line source
module SbpOperators using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids @enum Parity begin odd = -1 even = 1 end include("stencil.jl") include("readoperator.jl") include("volumeops/volume_operator.jl") include("volumeops/constant_interior_scaling_operator.jl") include("volumeops/derivatives/second_derivative.jl") include("volumeops/laplace/laplace.jl") include("volumeops/inner_products/inner_product.jl") include("volumeops/inner_products/inverse_inner_product.jl") include("boundaryops/boundary_operator.jl") include("boundaryops/boundary_restriction.jl") include("boundaryops/normal_derivative.jl") end # module