view src/Sbplib.jl @ 807:1fc6c4daec44 refactor/sbp_operators_method_signatures

Add type parameter to Vararg to make better error messages when Stencil is called with incompatible weights such as (1,1.,1)
author Jonatan Werpers <jonatan@werpers.com>
date Sat, 18 Sep 2021 23:30:49 +0200
parents 2f8c67c5979e
children a382942e5437 b4ee47f2aafb
line wrap: on
line source

module Sbplib

include("StaticDicts/StaticDicts.jl")
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