From 87749599f2a11bf503acf33e45923b48e229121a Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Fri, 11 Nov 2016 10:29:33 +0100
Subject: [PATCH] Bugfix: removed matplotlib dependency from test

---
 transformations.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/transformations.py b/transformations.py
index 62d400b5a..db2e2e5c4 100644
--- a/transformations.py
+++ b/transformations.py
@@ -314,8 +314,8 @@ def splitInnerLoop(astNode, symbolGroups):
     Splits inner loop into multiple loops to minimize the amount of simultaneous load/store streams
     :param astNode: AST root
     :param symbolGroups: sequence of symbol sequences: for each symbol sequence a new inner loop is created which
-    updates these symbols and their dependent symbols. Symbols which are in none of the symbolGroups and which
-    no symbol in a symbol group depends on, are not updated!
+        updates these symbols and their dependent symbols. Symbols which are in none of the symbolGroups and which
+        no symbol in a symbol group depends on, are not updated!
     :return: transformed AST
     """
     allLoops = astNode.atoms(ast.LoopOverCoordinate)
-- 
GitLab