using System.Collections.Generic; namespace ZeroLevel.HNSW { public class SplittedLALGraph { private readonly IDictionary _graphs = new Dictionary(); public void Append(LALGraph graph, int c) { _graphs.Add(c, graph); } public IDictionary> KNearest(int k, IDictionary contexts) { var partial_k = 1 + (k / _graphs.Count); var result = new Dictionary>(); foreach (var graph in _graphs) { result.Add(graph.Key, new List()); var context = contexts[graph.Key]; if (context.EntryPoints != null) { result[graph.Key].AddRange(graph.Value.KNearest(partial_k, context)); } } return result; } } }