-
Notifications
You must be signed in to change notification settings - Fork 335
Open
Labels
feature requestNew feature or requestNew feature or request
Description
Disjoint sampling requires that each seed vertex have a separate, non-overlapping subgraph.
Pseudocode:
(begin hop k; suppose fanout is [f, f, ...])
for each node n:
u = get_all_neighbors(n)
u = select_neighbors(u, n, f)
add_nodes_to_hop(u)
function select_neighbors(u, n, f):
for v in u:
if v in visited and visited[v] != n:
remove v from u
visited[v] = n
return first f nodes from u
Metadata
Metadata
Assignees
Labels
feature requestNew feature or requestNew feature or request