Skip to content

Commit 8f4de31

Browse files
committed
no really
1 parent bb76207 commit 8f4de31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/SpatialTreeInterface/SpatialTreeInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Return a sorted list of indices of the tree that satisfy the predicate.
3232
"""
3333
function query(tree, predicate)
3434
a = Int[]
35-
do_query(Base.Fix1(push!, a), sanitize_predicate(predicate), tree)
35+
depth_first_search(Base.Fix1(push!, a), sanitize_predicate(predicate), tree)
3636
return sort!(a)
3737
end
3838

0 commit comments

Comments
 (0)