Passed
Pull Request — master (#110)
by
unknown
01:31
created

hyperactive.experiment.toy   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 8
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
"""Toy experiments."""
2
3
4
from hyperactive.experiment.toy._ackley import Ackley
5
from hyperactive.experiment.toy._parabola import Parabola
6
from hyperactive.experiment.toy._sphere import Sphere
7
8
__all__ = [
9
    "Ackley",
10
    "Parabola",
11
    "Sphere",
12
]
13