Total Complexity | 0 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """Benchmark experiments.""" |
||
2 | |||
3 | from hyperactive.experiment.bench._ackley import Ackley |
||
4 | from hyperactive.experiment.bench._parabola import Parabola |
||
5 | from hyperactive.experiment.bench._sphere import Sphere |
||
6 | |||
7 | __all__ = [ |
||
8 | "Ackley", |
||
9 | "Parabola", |
||
10 | "Sphere", |
||
11 | ] |
||
12 |