mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
928 B
31 lines
928 B
using System.Collections.Generic;
|
|
|
|
namespace ZeroLevel.HNSW
|
|
{
|
|
public class SplittedLALGraph
|
|
{
|
|
private readonly IDictionary<int, LALGraph> _graphs = new Dictionary<int, LALGraph>();
|
|
|
|
public void Append(LALGraph graph, int c)
|
|
{
|
|
_graphs.Add(c, graph);
|
|
}
|
|
|
|
public IDictionary<int, List<int>> KNearest(int k, IDictionary<int, SearchContext> contexts)
|
|
{
|
|
var partial_k = 1 + (k / _graphs.Count);
|
|
var result = new Dictionary<int, List<int>>();
|
|
foreach (var graph in _graphs)
|
|
{
|
|
result.Add(graph.Key, new List<int>());
|
|
var context = contexts[graph.Key];
|
|
if (context.EntryPoints != null)
|
|
{
|
|
result[graph.Key].AddRange(graph.Value.KNearest(partial_k, context));
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
}
|