Mercurial > repos > public > sbplib_julia
changeset 313:d1004b881da1
Update modules and project/manifest
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 09 Sep 2020 21:20:25 +0200 |
parents | c1fcc35e19cb |
children | accb0876da12 |
files | Manifest.toml SbpOperators/Manifest.toml SbpOperators/Project.toml SbpOperators/src/SbpOperators.jl |
diffstat | 4 files changed, 13 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Manifest.toml Wed Sep 09 21:18:28 2020 +0200 +++ b/Manifest.toml Wed Sep 09 21:20:25 2020 +0200 @@ -51,7 +51,7 @@ version = "0.1.0" [[SbpOperators]] -deps = ["RegionIndices"] +deps = ["LazyTensors", "RegionIndices"] path = "SbpOperators" uuid = "204357d8-97fd-11e9-05e7-010897a14cd0" version = "0.1.0"
--- a/SbpOperators/Manifest.toml Wed Sep 09 21:18:28 2020 +0200 +++ b/SbpOperators/Manifest.toml Wed Sep 09 21:20:25 2020 +0200 @@ -1,5 +1,11 @@ # This file is machine-generated - editing it directly is not advised +[[LazyTensors]] +deps = ["RegionIndices"] +path = "../LazyTensors" +uuid = "62fbed2c-918d-11e9-279b-eb3a325b37d3" +version = "0.1.0" + [[RegionIndices]] path = "../RegionIndices" uuid = "5d527584-97f1-11e9-084c-4540c7ecf219"
--- a/SbpOperators/Project.toml Wed Sep 09 21:18:28 2020 +0200 +++ b/SbpOperators/Project.toml Wed Sep 09 21:20:25 2020 +0200 @@ -4,10 +4,12 @@ version = "0.1.0" [deps] +LazyTensors = "62fbed2c-918d-11e9-279b-eb3a325b37d3" RegionIndices = "5d527584-97f1-11e9-084c-4540c7ecf219" [extras] +Grids = "960fdf28-97ed-11e9-2a74-bd90bf2fab5a" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["Test"] +test = ["Test", "Grids"]
--- a/SbpOperators/src/SbpOperators.jl Wed Sep 09 21:18:28 2020 +0200 +++ b/SbpOperators/src/SbpOperators.jl Wed Sep 09 21:20:25 2020 +0200 @@ -1,10 +1,12 @@ module SbpOperators using RegionIndices +using LazyTensors include("stencil.jl") include("constantstenciloperator.jl") include("d2.jl") include("readoperator.jl") - +include("laplace/secondderivative.jl") +include("laplace/laplace.jl") end # module