using System; using System.Collections.Generic; namespace ZeroLevel.HNSW { public class HNSWMappers { private readonly IDictionary> _mappers = new Dictionary>(); private readonly Func _bucketFunction; public HNSWMappers(Func bucketFunction) { _bucketFunction = bucketFunction; } public void Append(HNSWMap map, int c) { _mappers.Add(c, map); } public IEnumerable ConvertIdsToFeatures(int c, IEnumerable ids) { foreach (var feature in _mappers[c].ConvertIdsToFeatures(ids)) { yield return feature; } } public IDictionary CreateContext(IEnumerable activeNodes, IEnumerable entryPoints) { var actives = new Dictionary>(); var entries = new Dictionary>(); if (activeNodes != null) { foreach (var node in activeNodes) { var c = _bucketFunction(node); if (_mappers.ContainsKey(c)) { if (actives.ContainsKey(c) == false) { actives.Add(c, new List()); } actives[c].Add(_mappers[c][node]); } } } if (entryPoints != null) { foreach (var entryPoint in entryPoints) { var c = _bucketFunction(entryPoint); if (_mappers.ContainsKey(c)) { if (entries.ContainsKey(c) == false) { entries.Add(c, new List()); } entries[c].Add(_mappers[c][entryPoint]); } } } var result = new Dictionary(); foreach (var pair in _mappers) { var active = actives.GetValueOrDefault(pair.Key); var entry = entries.GetValueOrDefault(pair.Key); result.Add(pair.Key, new SearchContext().SetActiveNodes(active).SetEntryPointsNodes(entry)); } return result; } } }