Passed
Pull Request — master (#101)
by Simon
01:37
created

tests.test_setup.search_config   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 0
1
import numpy as np
2
from hyperactive.search_config import SearchConfig
3
4
5
search_config = SearchConfig(
6
    x0=list(np.arange(2, 15, 1)),
7
    x1=list(np.arange(2, 25, 2)),
8
)
9