From db925603d062db0baa9a4752f3a07b7429a99140 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 14 Dec 2020 16:02:23 +0100 Subject: [PATCH] Remove Debug bound from P type --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3da6b52..1a45967 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,7 @@ pub struct Hnsw

{ impl

Hnsw

where - P: Point + std::fmt::Debug, + P: Point, { pub fn new(points: &[P], ef_construction: usize, ef_search: usize) -> (Self, Vec) { if points.is_empty() {