- Pass in, explcitly, the touch startergy
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-23 15:52:02 +02:00
parent 167c2b7c0d
commit 04edc241ad
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ public class Tree(T)
touch(child);
// Visit
collected ~= child.dfs(strat);
collected ~= child.dfs(strat, touch);
}
}