| Total Complexity | 2 |
| Total Lines | 7 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | class BaseFunction: |
||
| 2 | def objective_function(self, para): |
||
| 3 | raise NotImplementedError |
||
| 4 | |||
| 5 | def search_space(self): |
||
| 6 | raise NotImplementedError |
||
| 7 |