We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb76207 commit 8f4de31Copy full SHA for 8f4de31
src/utils/SpatialTreeInterface/SpatialTreeInterface.jl
@@ -32,7 +32,7 @@ Return a sorted list of indices of the tree that satisfy the predicate.
32
"""
33
function query(tree, predicate)
34
a = Int[]
35
- do_query(Base.Fix1(push!, a), sanitize_predicate(predicate), tree)
+ depth_first_search(Base.Fix1(push!, a), sanitize_predicate(predicate), tree)
36
return sort!(a)
37
end
38
0 commit comments