hyperactive.experiment.bench   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 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