We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bc3dd5 commit e80ca50Copy full SHA for e80ca50
1 file changed
OMPython/ModelicaSystem.py
@@ -2057,8 +2057,8 @@ def worker(worker_id, task_queue):
2057
2058
sim_query_done = sim_query_total - self._sim_task_query.qsize()
2059
logger.info(f"[Worker {worker_id}] Task completed: {resultpath.name} "
2060
- f"({sim_query_done}/{sim_query_total} = "
2061
- f"{sim_query_done / sim_query_total * 100:.2f}% of tasks left)")
+ f"({sim_query_total - sim_query_done}/{sim_query_total} = "
+ f"{(sim_query_total - sim_query_done) / sim_query_total * 100:.2f}% of tasks left)")
2062
2063
logger.info(f"Start simulations for DoE with {sim_query_total} simulations "
2064
f"using {num_workers} workers ...")
0 commit comments