view src/Sbplib.jl @ 877:dd2ab001a7b6 feature/equidistant_grid/refine

Implement refine function, move exports to the top of the file, change location of constuctors. The constructors were changed have only one inner constructor and simpler outer constructors.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 14 Feb 2022 09:39:58 +0100
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