| Conditions | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # Author: Simon Blanke |
||
| 39 | def test_get_results(): |
||
| 40 | opt = Hyperactive(search_config, n_iter=n_iter, optimizer="HillClimbing") |
||
| 41 | opt.search(X, y) |
||
| 42 | opt.get_results() |
||
| 43 | |||
| 44 | opt = Hyperactive(search_config, n_iter=n_iter, n_jobs=2, optimizer="HillClimbing") |
||
| 45 | opt.search(X, y) |
||
| 46 | opt.get_results() |
||
| 47 |