We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d42ea2 commit 55aa6e1Copy full SHA for 55aa6e1
1 file changed
OMPython/ModelicaSystem.py
@@ -2016,8 +2016,8 @@ def worker(worker_id, task_queue):
2016
2017
sim_query_done = sim_query_total - self._sim_task_query.qsize()
2018
logger.info(f"[Worker {worker_id}] Task completed: {resultpath.name} "
2019
- f"({sim_query_done}/{sim_query_total} = "
2020
- 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)")
2021
2022
logger.info(f"Start simulations for DoE with {sim_query_total} simulations "
2023
f"using {num_workers} workers ...")
0 commit comments