Passed
Push — master ( 613b45...e6e7ce )
by Simon
01:49 queued 15s
created

hyperactive.opt.hillclimbing   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
"""Hill climbing optimizer."""
2
# copyright: hyperactive developers, MIT License (see LICENSE file)
3
4
from hyperactive.opt.hillclimbing._hillclimbing import HillClimbing
5
6
__all__ = ["HillClimbing"]
7