mirror of
https://github.com/logos-storage/das-research.git
synced 2026-01-08 16:13:11 +00:00
Fix merge
This commit is contained in:
parent
811e071b4f
commit
64cafd533f
@ -241,6 +241,6 @@ class Simulator:
|
|||||||
progress = pd.DataFrame(progressVector)
|
progress = pd.DataFrame(progressVector)
|
||||||
if self.config.saveProgress:
|
if self.config.saveProgress:
|
||||||
self.result.addMetric("progress", progress.to_dict(orient='list'))
|
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
|
return self.result
|
||||||
|
|
||||||
|
|||||||
2
study.py
2
study.py
@ -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)
|
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:
|
if config.dumpXML:
|
||||||
result.dump()
|
result.dump(execID)
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user