From 6a040672d1db925d107b6b4ef505b9fe85336041 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 14 Dec 2020 15:49:06 +0100 Subject: [PATCH] Remove unused NodeId type --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 514fad9..92c74d3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -520,10 +520,6 @@ struct Candidate { pid: PointId, } -/// References a node in a particular layer (usually the same layer) -#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)] -struct NodeId(usize); - /// References a `Point` in the `Hnsw` /// /// This can be used to index into the `Hnsw` to refer to the `Point` data.