namespace ZeroLevel.HNSW { /// /// Type of heuristic to select best neighbours for a node. /// public enum NeighbourSelectionHeuristic { /// /// Marker for the Algorithm 3 (SELECT-NEIGHBORS-SIMPLE) from the article. Implemented in /// SelectSimple, /// /// Marker for the Algorithm 4 (SELECT-NEIGHBORS-HEURISTIC) from the article. Implemented in /// SelectHeuristic } }