From d66bd55b56f724d390345a8fe290ddaa5a36463b Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Fri, 13 Jul 2018 11:08:27 +0200
Subject: [PATCH] [test][md][facet] Remove numpy dependency

---
 test/multidomain/facet/1p_1p/analytical/convergencetest.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/test/multidomain/facet/1p_1p/analytical/convergencetest.py b/test/multidomain/facet/1p_1p/analytical/convergencetest.py
index 3fd5e02997..e7e03de820 100755
--- a/test/multidomain/facet/1p_1p/analytical/convergencetest.py
+++ b/test/multidomain/facet/1p_1p/analytical/convergencetest.py
@@ -3,7 +3,6 @@
 from math import *
 import subprocess
 import sys
-import numpy as np
 
 if len(sys.argv) > 5 or len(sys.argv) < 3:
     sys.stderr.write("Invalid number of arguments given. Please provide the following arguments (in this order):\n\
@@ -26,7 +25,7 @@ for permIndex in range(0, len(k)):
     print("Removed old log file (" + execName + '.log' + ")!")
 
     # for each given number of cells, create new .geo file, mesh & run simulation
-    numCells = np.linspace(10, 100, 10)
+    numCells = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
     for cells in numCells:
         geoFile = open("grids/hybridgrid.geo", 'r')
         lines = geoFile.readlines()
-- 
GitLab