Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1457:18cb103e499c bugfix/sbp_operators/stencil_return_type
Try to inline sum
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Sun, 26 Nov 2023 22:43:03 +0100 |
| parents | c0c1189c5f2e |
| children | 9c689a627244 05eb8ba149e2 |
line wrap: on
line source
module Grids using Sbplib.RegionIndices using Sbplib.LazyTensors using StaticArrays # Grid export Grid export coordinate_size export component_type export TensorGrid export ZeroDimGrid export TensorGridBoundary export grid_id export boundary_id export eval_on export getcomponent # BoundaryIdentifier export BoundaryIdentifier # EquidistantGrid export EquidistantGrid export spacing export inverse_spacing export boundary_identifiers export boundary_grid export refine export coarsen export equidistant_grid export CartesianBoundary abstract type BoundaryIdentifier end include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") end # module
