From d0c7e2710624d7a787bcadcfb2fbd39163e82c16 Mon Sep 17 00:00:00 2001 From: har0ke Date: Sun, 5 Jul 2020 21:21:36 +0200 Subject: [PATCH] Change the collection of experiments to run --- scripts/dumpall.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/dumpall.py b/scripts/dumpall.py index d7c64bf..e335c3c 100755 --- a/scripts/dumpall.py +++ b/scripts/dumpall.py @@ -2,9 +2,8 @@ import os import sys import subprocess -for e in range(8, 13): - for p in [1, 5]: - number = str(float(str(p) + "e" + str(e))) - args = [os.path.join(os.path.dirname(__file__), "test.py"), number] + sys.argv[1:] - print(" ".join(args)) - subprocess.check_call(args) \ No newline at end of file +for i in range(20): + number = str(pow((i + 1) * 1000, 3)) + args = [os.path.join(os.path.dirname(__file__), "test.py"), number] + sys.argv[1:] + print(" ".join(args)) + subprocess.check_call(args) \ No newline at end of file