summaryrefslogtreecommitdiffstats
path: root/src/metric.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-04-19 16:40:29 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-05-02 13:19:05 -0400
commit1c560791902a4ef72efa671106d8f6d97fea50c1 (patch)
tree187a32326f31fc35797286f28279931fac3a2ed4 /src/metric.rs
parent8d9de0e1028daed981246174182a39dd917b72bc (diff)
downloadkd-forest-1c560791902a4ef72efa671106d8f6d97fea50c1.tar.xz
metric/kd: Implement k-d trees
Diffstat (limited to 'src/metric.rs')
-rw-r--r--src/metric.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/metric.rs b/src/metric.rs
index 549db67..95191da 100644
--- a/src/metric.rs
+++ b/src/metric.rs
@@ -1,5 +1,6 @@
//! [Metric spaces](https://en.wikipedia.org/wiki/Metric_space).
+pub mod kd;
pub mod vp;
use ordered_float::OrderedFloat;