Mercurial > repos > public > sbplib_julia
diff src/Grids/Grids.jl @ 1672:3714a391545a refactor/grids/boundary_identifiers_1d
Make the boundary identifiers for EquidistantGrid subtype BoundaryIdentifer
author | Vidar Stiernström <vidar.stiernstrom@gmail.com> |
---|---|
date | Sun, 07 Jul 2024 15:15:12 -0700 |
parents | 5f348cc5598e |
children | 471a948cd2b2 |
line wrap: on
line diff
--- a/src/Grids/Grids.jl Sat Jun 29 17:06:27 2024 +0200 +++ b/src/Grids/Grids.jl Sun Jul 07 15:15:12 2024 -0700 @@ -1,6 +1,5 @@ module Grids -using Sbplib.RegionIndices using Sbplib.LazyTensors using StaticArrays @@ -23,6 +22,8 @@ export BoundaryIdentifier export TensorGridBoundary export CartesianBoundary +export LowerBoundary +export UpperBoundary export TensorGrid export ZeroDimGrid @@ -32,9 +33,6 @@ export spacing export equidistant_grid - -abstract type BoundaryIdentifier end - include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl")