Fix no parallel
This commit is contained in:
parent
277c949964
commit
1501e66fbb
1 changed files with 2 additions and 2 deletions
|
|
@ -120,8 +120,8 @@ impl Evaluator {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "parallel"))]
|
#[cfg(not(feature = "parallel"))]
|
||||||
pub fn get_best_candidate(self) -> Option<Candidate> {
|
pub fn get_best_candidates(self, _limit: usize) -> Vec<Candidate> {
|
||||||
self.eval_best_candidate.into_inner()
|
vec![]
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set best size, if known in advance
|
/// Set best size, if known in advance
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue