remove false comment

This commit is contained in:
Simon Gardling 2025-02-20 23:51:02 -05:00
parent 06a35bda10
commit 0cc4c3bf92
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -172,7 +172,6 @@ impl FutureMoves {
let mut by_depth: HashMap<usize, Vec<usize>> = HashMap::new();
for idx in indexes {
let depth = self.depth_of(idx);
// -1 because `depth_of` is one-indexed
if let Some(got) = by_depth.get_mut(&depth) {
got.push(idx);
} else {