view src/Sbplib.jl @ 504:21fba50cb5b0 feature/quadrature_as_outer_product

Use LazyOuterProduct to construct multi-dimensional quadratures. This change allwed to: - Replace the types Quadrature and InverseQuadrature by functions returning outer products of the 1D operators. - Avoid convoluted naming of types. DiagonalInnerProduct is now renamed to DiagonalQuadrature, similarly for InverseDiagonalInnerProduct.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Sat, 07 Nov 2020 13:07:31 +0100
parents 33f04f398aac
children 2f8c67c5979e
line wrap: on
line source

module Sbplib

include("RegionIndices/RegionIndices.jl")
include("LazyTensors/LazyTensors.jl")
include("Grids/Grids.jl")
include("SbpOperators/SbpOperators.jl")
include("DiffOps/DiffOps.jl")

export RegionIndices
export LazyTensors
export Grids
export SbpOperators
export DiffOps

end