You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A data structure for assessing quickly whether a point is close to an indexed point as
130
-
determined by the given distances function `M`. The distance function has to be a *metric*.
131
-
The indexed points are only stored by their identifiers `Id`. `triangle_inequality` should be set to `true`, if the metric satisfies the triangle inequality. Otherwise, it should be set to `false`.
130
+
determined by the given distance function `M`.
131
+
The indexed points are only stored by their identifiers `Id`.
132
+
`triangle_inequality` should be set to `true`, if the distance function satisfies the triangle inequality.
133
+
Otherwise, it should be set to `false`. If `triangle_inequality` is nothing the algorithm will try to detect whether the triangle is satisfied.
Construct a Voronoi tree data structure for vector `v` of element type `T` and with identifiers
215
-
`Id`. Each node has the given `capacity` and distances are measured by the given `metric`. `triangle_inequality` should be set to `true`, if `metric` satisfies the triangle inequality. Otherwise, it should be set to `false`.
220
+
`Id`. Each node has the given `capacity` and distances are measured by the given `distance`.
221
+
`triangle_inequality` should be set to `true`, if `distance` satisfies the triangle inequality. Otherwise, it should be set to `false`.
0 commit comments