Home | History | Annotate | Download | only in tools

Lines Matching refs:edges

23   """Load the edges map from the dump file, and filter it to only
27 edges = json.load(file)
30 # Copy out only the edges we're interested in from the full edge list.
37 target_edges[src] = edges[src]
38 to_visit.extend(edges[src])
43 def WriteGraph(edges):
45 |edges| is a map of target to a list of other targets it depends on."""
49 for src, dst in edges.items():
58 # its file grouping before writing out any edges that may refer
78 # the edges between nodes.
79 for src, dsts in edges.items():
93 edges = LoadEdges('dump.json', sys.argv[1:])
95 WriteGraph(edges)