Mercurial > repos > public > sbplib_julia
changeset 217:4c62d0253bd4 package_refactor
Add RegionIndices as dependency of Grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 26 Jun 2019 12:55:01 +0200 |
parents | 30112f73555c |
children | 03375aa30edd |
files | Grids/Manifest.toml Grids/Project.toml Grids/src/Grids.jl Grids/test/runtests.jl |
diffstat | 4 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Grids/Manifest.toml Wed Jun 26 12:53:45 2019 +0200 +++ b/Grids/Manifest.toml Wed Jun 26 12:55:01 2019 +0200 @@ -1,2 +1,6 @@ # This file is machine-generated - editing it directly is not advised +[[RegionIndices]] +path = "../RegionIndices" +uuid = "5d527584-97f1-11e9-084c-4540c7ecf219" +version = "0.1.0"
--- a/Grids/Project.toml Wed Jun 26 12:53:45 2019 +0200 +++ b/Grids/Project.toml Wed Jun 26 12:55:01 2019 +0200 @@ -3,6 +3,9 @@ authors = ["Jonatan Werpers <jonatan.werpers@it.uu.se>"] version = "0.1.0" +[deps] +RegionIndices = "5d527584-97f1-11e9-084c-4540c7ecf219" + [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
--- a/Grids/src/Grids.jl Wed Jun 26 12:53:45 2019 +0200 +++ b/Grids/src/Grids.jl Wed Jun 26 12:55:01 2019 +0200 @@ -1,5 +1,7 @@ module Grids +using RegionIndices + abstract type BoundaryIdentifier end struct CartesianBoundary{Dim, R<:Region} <: BoundaryIdentifier end dim(::CartesianBoundary{Dim, R}) where {Dim, R} = Dim