view src/Diffinitive.jl @ 1779:2a8a2b52a112 feature/grids/manifolds

Refactor Interval to its own type. This allows the user better control of the coordinate type of 1d grids
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 16 Sep 2024 08:33:43 +0200
parents 471a948cd2b2
children ec5589090faa
line wrap: on
line source

module Diffinitive

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