[ANN] new release of vpt (a Vantage-point tree library)

vpt is the replacement of minivpt in opam.

The code is there:

The new interface is:

There are more functionalities than before (all neighbors within distance d from query point, find, mem, root and remove) and it is no more a minimalist implementation.

It also works for large number of points now if you construct a random vpt, unlike before.

Regards,
F.

2 Likes

This is an awesome data structure :slight_smile: Thanks @UnixJunkie!

1 Like

I can trigger a bug though.
With 300k points from the real world, some NaNs can appear in the data structure.
I am investigating …

also, I should use buckets of points; once there are too few points left, put them all in the same bucket instead of constructing sub trees. This will save storage space, time when constructing the tree and maybe even accelerate queries (starting at some small N, brute force search is faster than vpt search).