From b0d3b805a17ba8319c14e8c7970cd3928f0fd1aa Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 18 Dec 2020 15:56:26 +0100 Subject: [PATCH] 2020: day18: bench --- aoc2020/aoc2020_bench/benches/aoc2020_bench.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aoc2020/aoc2020_bench/benches/aoc2020_bench.rs b/aoc2020/aoc2020_bench/benches/aoc2020_bench.rs index 6c9aff5..ccb2755 100644 --- a/aoc2020/aoc2020_bench/benches/aoc2020_bench.rs +++ b/aoc2020/aoc2020_bench/benches/aoc2020_bench.rs @@ -17,6 +17,7 @@ use aoc2020::day14; use aoc2020::day15; use aoc2020::day16; use aoc2020::day17; +use aoc2020::day18; fn aoc2020_all(c: &mut Criterion) { c.bench_function("day01", |b| b.iter(|| day01::run().unwrap())); @@ -36,6 +37,7 @@ fn aoc2020_all(c: &mut Criterion) { c.bench_function("day15", |b| b.iter(|| day15::run().unwrap())); c.bench_function("day16", |b| b.iter(|| day16::run().unwrap())); c.bench_function("day17", |b| b.iter(|| day17::run().unwrap())); + c.bench_function("day18", |b| b.iter(|| day18::run().unwrap())); } criterion_group! {