You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(diffctx): ego_graph O(k*BFS)→O(BFS) + file_cache to universe
Fix ego_graph: hoist to_undirected outside seed loop, replace
per-node shortest_path_length with single_source_shortest_path_length.
Reduces complexity from O(seeds*ego_size*(V+E)) to O(seeds*(V+E)).
Propagate file_cache to _build_ident_index and
_expand_universe_by_rare_identifiers in universe.py.
Add _read_file helper to EdgeBuilder base class for cache-aware
file reading across all 40+ edge builders.
0 commit comments