Small fix output

This commit is contained in:
Leonardo Bautista-Gomez 2022-12-14 17:17:32 +01:00
parent bb54a1cf31
commit e337ddc74a
1 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ from DAS import *
def study():
sim = Simulator(0)
sim.initLogger()
maxTries = 2
step = 25
maxTries = 10
step = 20
frRange = []
resultRange = []
simCnt = 0
@ -24,7 +24,7 @@ def study():
result += sim.run()
simCnt += 1
frRange.append(fr)
resultRange.append(100-result)
resultRange.append((maxTries-result)*100/maxTries)
end = time.time()
sim.logger.info("A total of %d simulations ran in %d seconds" % (simCnt, end-start), extra=sim.format)
for i in range(len(frRange)):