| Conditions | 1 |
| Total Lines | 19 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # Author: Simon Blanke |
||
| 10 | def __init__( |
||
| 11 | self, |
||
| 12 | search_space, |
||
| 13 | initialize={"grid": 4, "random": 2, "vertices": 4}, |
||
| 14 | constraints=[], |
||
| 15 | random_state=None, |
||
| 16 | rand_rest_p=0, |
||
| 17 | nth_process=None, |
||
| 18 | ): |
||
| 19 | super().__init__( |
||
| 20 | search_space=search_space, |
||
| 21 | initialize=initialize, |
||
| 22 | constraints=constraints, |
||
| 23 | random_state=random_state, |
||
| 24 | rand_rest_p=rand_rest_p, |
||
| 25 | nth_process=nth_process, |
||
| 26 | ) |
||
| 27 | |||
| 28 | self.optimizers = [self] |
||
| 29 | |||
| 40 |