From 340a4f3cf26436eb799bb60d0dfe9517bbc5a673 Mon Sep 17 00:00:00 2001 From: Martin Bauer <martin.bauer@fau.de> Date: Thu, 24 Nov 2016 17:40:48 +0100 Subject: [PATCH] Worked on Benchmark - new waLBerla only benchmark --- ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast.py b/ast.py index 54c9f0c48..c8b528b1f 100644 --- a/ast.py +++ b/ast.py @@ -217,7 +217,7 @@ class LoopOverCoordinate(Node): def newLoopWithDifferentBody(self, newBody): result = LoopOverCoordinate(newBody, self._coordinateToLoopOver, self._begin, self._end, self._increment) - result.prefixLines = self.prefixLines + result.prefixLines = [l for l in self.prefixLines] return result @property -- GitLab