diff src/SbpOperators/stencil.jl @ 899:18f63f1a0c44 feature/variable_derivatives

Fix bugs from stencil refactor
author Jonatan Werpers <jonatan@werpers.com>
date Sun, 13 Feb 2022 22:00:02 +0100
parents cd6d71781137
children a7f898b1ce1e
line wrap: on
line diff
--- a/src/SbpOperators/stencil.jl	Sun Feb 13 21:40:23 2022 +0100
+++ b/src/SbpOperators/stencil.jl	Sun Feb 13 22:00:02 2022 +0100
@@ -2,7 +2,7 @@
 export CenteredNestedStencil
 
 struct Stencil{T,N}
-    range::UnitRange
+    range::UnitRange{Int64}
     weights::NTuple{N,T}
 
     function Stencil(range::UnitRange,weights::NTuple{N,T}) where {T, N}