| Conditions | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # Author: Simon Blanke |
||
| 48 | def _tqdm_dict(self, nth_process, n_iter, obj_func): |
||
| 49 | """Generates the parameter dict for tqdm in the iteration-loop of each optimizer""" |
||
| 50 | return { |
||
| 51 | "total": n_iter, |
||
| 52 | "desc": "Process " + str(nth_process) + " -> " + obj_func.__name__, |
||
| 53 | "position": nth_process, |
||
| 54 | "leave": True, |
||
| 55 | } |
||
| 57 |