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

hyperactive.opt   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
"""Individual optimization algorithms."""
2
# copyright: hyperactive developers, MIT License (see LICENSE file)
3
4
from hyperactive.opt.gfo import HillClimbing
5
from hyperactive.opt.gridsearch import GridSearch
6
7
__all__ = [
8
    "GridSearch",
9
    "HillClimbing",
10
]
11