Fix merge

This commit is contained in:
Leonardo Bautista-Gomez 2023-03-30 12:08:20 +02:00
parent 811e071b4f
commit 64cafd533f
2 changed files with 2 additions and 2 deletions

View File

@ -241,6 +241,6 @@ class Simulator:
progress = pd.DataFrame(progressVector)
if self.config.saveProgress:
self.result.addMetric("progress", progress.to_dict(orient='list'))
self.result.populate(self.shape, missingVector)
self.result.populate(self.shape, self.config, missingVector)
return self.result

View File

@ -36,7 +36,7 @@ def runOnce(config, shape, execID):
sim.logger.info("Shape: %s ... Block Available: %d in %d steps" % (str(sim.shape.__dict__), result.blockAvailable, len(result.missingVector)), extra=sim.format)
if config.dumpXML:
result.dump()
result.dump(execID)
return result