Mercurial > repos > public > sbplib_julia
diff src/Grids/Grids.jl @ 1748:03894fd7b132 feature/grids/manifolds
Merge feature/grids/curvilinear
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 11 Sep 2024 15:41:58 +0200 |
parents | a4c52ae93b11 e719c6dadba6 |
children | f3d7e2d7a43f 819ab806960f |
line wrap: on
line diff
--- a/src/Grids/Grids.jl Wed Aug 28 10:35:08 2024 +0200 +++ b/src/Grids/Grids.jl Wed Sep 11 15:41:58 2024 +0200 @@ -1,8 +1,7 @@ # TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids. module Grids -using Sbplib.RegionIndices -using Sbplib.LazyTensors +using Diffinitive.LazyTensors using StaticArrays using LinearAlgebra @@ -50,6 +49,8 @@ export BoundaryIdentifier export TensorGridBoundary export CartesianBoundary +export LowerBoundary +export UpperBoundary export TensorGrid export ZeroDimGrid @@ -69,8 +70,6 @@ export metric_tensor export metric_tensor_inverse -abstract type BoundaryIdentifier end - include("manifolds.jl") include("grid.jl") include("tensor_grid.jl")