diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-05-29 10:24:44 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-06-24 10:03:44 -0400 |
commit | 4876b9799c6dc62ab34500559d4584f4671ddb0f (patch) | |
tree | a96529807e68dc14bf760caf28db1b6e365ce419 /src/lib.rs | |
parent | 5deaaf8e584fbb8634ca3aa88852bc75b470e9a6 (diff) | |
download | acap-4876b9799c6dc62ab34500559d4584f4671ddb0f.tar.xz |
chebyshev: Implement Chebyshev distance
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |