mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-05 18:56:53 -04:00
Fix skeleton benchmark
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
@@ -6,10 +6,10 @@ fn main() {
|
|||||||
|
|
||||||
#[divan::bench]
|
#[divan::bench]
|
||||||
fn part1() {
|
fn part1() {
|
||||||
part1::process(divan::black_box("../input.txt")).unwrap();
|
part1::process(divan::black_box(include_str!("../input.txt"))).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[divan::bench]
|
#[divan::bench]
|
||||||
fn part2() {
|
fn part2() {
|
||||||
part2::process(divan::black_box("../input.txt")).unwrap();
|
part2::process(divan::black_box(include_str!("../input.txt"))).unwrap();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user