Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # Author: Simon Blanke |
||
2 | # Email: [email protected] |
||
3 | # License: MIT License |
||
4 | |||
5 | from .candidate_base import Candidate |
||
6 | |||
7 | |||
8 | class CandidateShortMem(Candidate): |
||
9 | def __init__( |
||
10 | self, obj_func, func_para, search_space, init_para, memory, verb, hyperactive |
||
11 | ): |
||
12 | super().__init__( |
||
13 | obj_func, func_para, search_space, init_para, memory, verb, hyperactive |
||
14 | ) |
||
15 |