diff src/SbpOperators/volumeops/laplace/laplace.jl @ 951:66e8faf4bb4b feature/laplace_opset

Reviwe: Some more comments
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 14 Mar 2022 08:25:11 +0100
parents 1484073dfe27
children 1bb28e47990f
line wrap: on
line diff
--- a/src/SbpOperators/volumeops/laplace/laplace.jl	Mon Mar 14 08:06:50 2022 +0100
+++ b/src/SbpOperators/volumeops/laplace/laplace.jl	Mon Mar 14 08:25:11 2022 +0100
@@ -6,7 +6,7 @@
 used to construct the `TensorMapping`.
 """
 struct Laplace{T, Dim, TM<:TensorMapping{T, Dim, Dim}} <: TensorMapping{T, Dim, Dim}
-    D::TM# Differential operator
+    D::TM       # Difference operator
     stencil_set # Stencil set of the operator
 end
 
@@ -52,3 +52,4 @@
     end
     return Δ
 end
+# REVIEW: Do we need this method? Couldn't it just be inlined in the constructor on :19?