This commit is contained in:
2025-12-08 16:43:00 +01:00
parent 6465a1597a
commit f22f67161b
2 changed files with 23 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ fn bench_aoc_4_part2(c: &mut Criterion) {
}
fn bench_aoc_4_part2_f(c: &mut Criterion) {
let input = black_box(include_bytes!("../src/aoc/input/full_input_aoc4.txt"));
c.bench_function("bench_aoc4 part 2", |b| b.iter(|| aoc_4::solve_p2_f(input)));
c.bench_function("bench_aoc4 part 2 fast", |b| b.iter(|| aoc_4::solve_p2_f(input)));
}
criterion_group!(