From 4876b9799c6dc62ab34500559d4584f4671ddb0f Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 29 May 2020 10:24:44 -0400 Subject: chebyshev: Implement Chebyshev distance --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 8cce2d8..1ef5c29 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -90,6 +90,7 @@ //! [`nearest_within()`]: NearestNeighbors#method.nearest_within //! [`k_nearest_within()`]: NearestNeighbors#method.k_nearest_within +pub mod chebyshev; pub mod coords; pub mod distance; pub mod euclid; -- cgit v1.2.3