We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f49bf2 commit 7825581Copy full SHA for 7825581
1 file changed
crates/vchordrq/src/search.rs
@@ -123,7 +123,7 @@ where
123
})
124
};
125
126
- for i in (1..height_of_root).rev() {
+ for i in 1..height_of_root {
127
state = step(state).take(probes[i as usize - 1] as _).collect();
128
}
129
@@ -265,7 +265,7 @@ where
265
266
267
let mut it = None;
268
269
let it = it.insert(step(state));
270
state = it.take(probes[i as usize - 1] as _).collect();
271
0 commit comments