cargo clippy fixes
This commit is contained in:
Родитель
d6d8167fba
Коммит
7b5b7de9c1
|
@ -420,7 +420,7 @@ impl AggregatedData {
|
|||
.entry(Arc::new(value_combination))
|
||||
.or_insert_with(AggregatedCount::default);
|
||||
|
||||
(*max_count).count = max_count.count.max(count.count);
|
||||
max_count.count = max_count.count.max(count.count);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,8 +43,8 @@ impl Evaluator {
|
|||
.entry(sensitive_comb.len())
|
||||
.or_insert((0.0, 0));
|
||||
|
||||
(*err_sum_count).0 += err as f64;
|
||||
(*err_sum_count).1 += 1;
|
||||
err_sum_count.0 += err as f64;
|
||||
err_sum_count.1 += 1;
|
||||
}
|
||||
}
|
||||
error_sum_count_by_len
|
||||
|
|
Загрузка…
Ссылка в новой задаче