refactor: remove dead utils/bench.rs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Asger Geel Weirsøe
2026-05-06 09:25:39 +02:00
parent 8dd06377fc
commit 2b89653be6
12 changed files with 126 additions and 912 deletions

View File

@@ -1,12 +0,0 @@
use std::time::Instant;
pub fn time_execution<F, T>(name: &str, f: F) -> T
where
F: FnOnce() -> T,
{
let start = Instant::now();
let result = f();
let duration = start.elapsed();
println!("[benchmark] {}: {:?}", name, duration);
result
}