Conditions | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | # Author: Simon Blanke |
||
20 | def __init__(self, objective_function, optimizer, callbacks, catch, nth_process): |
||
21 | super().__init__() |
||
22 | |||
23 | self.objective_function = objective_function |
||
24 | self.optimizer = optimizer |
||
25 | self.callbacks = callbacks |
||
26 | self.catch = catch |
||
27 | self.nth_process = nth_process |
||
28 | |||
29 | self.nth_iter = 0 |
||
30 | |||
53 |