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