summaryrefslogtreecommitdiffstats
path: root/src/kd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/kd.rs')
-rw-r--r--src/kd.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kd.rs b/src/kd.rs
index d37321e..bf6b7c6 100644
--- a/src/kd.rs
+++ b/src/kd.rs
@@ -3,8 +3,8 @@
use crate::coords::Coordinates;
use crate::distance::Proximity;
use crate::lp::Minkowski;
+use crate::knn::{ExactNeighbors, NearestNeighbors, Neighborhood};
use crate::util::Ordered;
-use crate::{ExactNeighbors, NearestNeighbors, Neighborhood};
use num_traits::Signed;
@@ -541,7 +541,7 @@ where
mod tests {
use super::*;
- use crate::tests::test_exact_neighbors;
+ use crate::knn::tests::test_exact_neighbors;
#[test]
fn test_kd_tree() {