Change the collection of experiments to run

This commit is contained in:
har0ke 2020-07-05 21:21:36 +02:00
parent e576ebb162
commit d0c7e27106

View File

@ -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)
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)