summaryrefslogtreecommitdiffstats
path: root/src/metric.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-04-19 16:38:24 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-05-02 13:19:05 -0400
commit8d9de0e1028daed981246174182a39dd917b72bc (patch)
tree68ba2fe3b017dfab6b7256d0ecfabac9e8043927 /src/metric.rs
parent8aa2911b4c978ad7131a430d07a580cedf6f8f65 (diff)
downloadkd-forest-8d9de0e1028daed981246174182a39dd917b72bc.tar.xz
metric/vp: Implement vantage-point trees
Diffstat (limited to 'src/metric.rs')
-rw-r--r--src/metric.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/metric.rs b/src/metric.rs
index e067771..549db67 100644
--- a/src/metric.rs
+++ b/src/metric.rs
@@ -1,5 +1,7 @@
//! [Metric spaces](https://en.wikipedia.org/wiki/Metric_space).
+pub mod vp;
+
use ordered_float::OrderedFloat;
use std::cmp::Ordering;