Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Sep 25, 2023
1 parent 3586ceb commit e1997ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/torin/benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ fn criterion_benchmark(c: &mut Criterion) {
return vec![];
}

let nodes = (0..=(level + 1 * 3))
.map(|i| i + (1000 * (level + 1)))
let nodes = (0..=((level + 1) * 3))
.map(|i| i + ((level + 1) * 1000))
.into_iter()
.collect::<Vec<usize>>();
for id in nodes.iter() {
Expand Down

0 comments on commit e1997ec

Please sign in to comment.