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"))]
|
||||
pub fn get_best_candidate(self) -> Option<Candidate> {
|
||||
self.eval_best_candidate.into_inner()
|
||||
pub fn get_best_candidates(self, _limit: usize) -> Vec<Candidate> {
|
||||
vec![]
|
||||
}
|
||||
|
||||
/// Set best size, if known in advance
|
||||
|
|
|
|||
Loading…
Reference in a new issue