Change the collection of experiments to run
This commit is contained in:
parent
e576ebb162
commit
d0c7e27106
@ -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)
|
Loading…
x
Reference in New Issue
Block a user