Home | History | Annotate | Download | only in setools

Lines Matching defs:Edge

245                 edge = Edge(self.subG, source, target)
246 yield step_output(source, target, edge.rules)
283 edge = Edge(self.subG, path[s - 1], path[s])
284 yield step_output(edge.source, edge.target, edge.rules)
319 edge = Edge(self.G, s, t, create=True)
320 edge.rules.append(rule)
321 edge.weight = wweight
324 edge = Edge(self.G, t, s, create=True)
325 edge.rules.append(rule)
326 edge.weight = rweight
350 edge = Edge(self.subG, s, t)
351 if edge.weight < self.min_weight:
352 delete_list.append(edge)
360 class Edge(object):
363 A graph edge. Also used for returning information flow steps.
366 source The source type of the edge.
367 target The target type of the edge.
370 create (T/F) create the edge if it does not exist.
378 # The weight for each edge is 1 since each info
400 raise ValueError("Edge does not exist in graph")