log number of steps as well
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
8f2052e1ac
commit
91a4b48947
2
study.py
2
study.py
|
@ -37,7 +37,7 @@ def study():
|
||||||
sim.initValidators()
|
sim.initValidators()
|
||||||
sim.initNetwork()
|
sim.initNetwork()
|
||||||
result = sim.run()
|
result = sim.run()
|
||||||
sim.logger.info("Shape: %s ... Block Available: %d" % (str(sim.shape.__dict__), result.blockAvailable), 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)
|
||||||
results.append(copy.deepcopy(result))
|
results.append(copy.deepcopy(result))
|
||||||
simCnt += 1
|
simCnt += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue