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 1bdff3b commit 20fecedCopy full SHA for 20feced
src/neighborsearch/ball.jl
@@ -5,7 +5,9 @@
5
"""
6
BallSearch(domain, ball)
7
8
-A method for searching neighbors in `domain` inside `ball`.
+A method for searching neighbors in `domain` inside metric `ball`.
9
+
10
+See [`MetricBall`](@ref) for additional details.
11
12
struct BallSearch{D<:Domain,B<:MetricBall,T} <: NeighborSearchMethod
13
# input fields
src/neighborsearch/kball.jl
@@ -6,7 +6,9 @@
KBallSearch(domain, k, ball)
A method that searches `k` nearest neighbors and then filters
-these neighbors using a norm `ball`.
+these neighbors using a metric `ball`.
struct KBallSearch{D<:Domain,B<:MetricBall,T} <: BoundedNeighborSearchMethod
14
0 commit comments