Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1303:2d34290fdc58 tooling/benchmarks
Add functions for hg commit and checking if the repo is clean
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Thu, 23 Mar 2023 08:55:31 +0100 |
| parents | dfbd62c7eb09 |
| children | 31041ef8092a |
line wrap: on
line source
module Grids using Sbplib.RegionIndices # Grid export Grid export dims export points export evalOn # BoundaryIdentifier export BoundaryIdentifier export CartesianBoundary export dim export region # EquidistantGrid export EquidistantGrid export spacing export inverse_spacing export restrict export boundary_identifiers export boundary_grid export refine export coarsen include("grid.jl") include("boundary_identifier.jl") include("equidistant_grid.jl") end # module
