changeset 215:3a93d8a799ce package_refactor

Add missing module in DiffOps
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 26 Jun 2019 12:32:21 +0200
parents 08b07c6eeec7
children 30112f73555c
files DiffOps/src/DiffOps.jl
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/DiffOps/src/DiffOps.jl	Wed Jun 26 11:10:12 2019 +0200
+++ b/DiffOps/src/DiffOps.jl	Wed Jun 26 12:32:21 2019 +0200
@@ -1,3 +1,7 @@
+module DiffOps
+
+using RegionIndices
+
 abstract type DiffOp end
 
 # TBD: The "error("not implemented")" thing seems to be hiding good error information. How to fix that? Different way of saying that these should be implemented?
@@ -218,3 +222,5 @@
 # 		sat(s.L, Dirichlet{CartesianBoundary{2,Lower}}(s.tau),  v, s.g_s, i) +
 # 		sat(s.L, Dirichlet{CartesianBoundary{2,Upper}}(s.tau),  v, s.g_n, i)
 # end
+
+end # module
\ No newline at end of file