Searched refs:node_list (Results 1 – 4 of 4) sorted by relevance
236 def node_list(self): member in Graph405 for node in self.node_list():422 if len(topo_list) == len(self.node_list()):616 node_list = self.node_list()617 for node in node_list:619 if len(bfs_list) != len(node_list):
104 function CollectNew(node_list) { argument105 for (var i = 0; i < node_list.length; i++) {106 link_to_original_script_list.push(node_list[i]);107 CollectNew(node_list[i].children);
11 self.assertEqual(graph.node_list(), [])62 self.assertEqual(list(sorted(graph.node_list())), [1, 2, 3])
67 .. method:: Graph.node_list()