From 715e9a556dda51e2e493da864bf3d6470bd3314e Mon Sep 17 00:00:00 2001 From: Michael Kuron <mkuron@icp.uni-stuttgart.de> Date: Sun, 24 Nov 2019 22:31:35 +0100 Subject: [PATCH] Typo in staggered_vecto_access --- pystencils/field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystencils/field.py b/pystencils/field.py index eb962adbb..6b3fa9f8c 100644 --- a/pystencils/field.py +++ b/pystencils/field.py @@ -548,7 +548,7 @@ class Field(AbstractField): return sp.Matrix([[self.staggered_access(offset, (i, k)) for k in range(self.index_shape[2])] for i in range(self.index_shape[1])]) else: - raise NotImplementedError("center_vector is not implemented for more than 3 index dimensions") + raise NotImplementedError("staggered_vector_access is not implemented for more than 3 index dimensions") @property def staggered_stencil(self): -- GitLab