Home
last modified time | relevance | path

Searched refs:depGraph (Results 1 – 2 of 2) sorted by relevance

/petsc/config/BuildSystem/config/
H A Dframework.py1213 def parallelQueueEvaluation(self, depGraph, numThreads = 1): argument
1221 numChildren = len(depGraph.vertices)
1222 for child in graph.DirectedGraph.getRoots(depGraph):
1326 for child in depGraph.outEdges[vertex]:
1328 for v in depGraph.inEdges[child]:
1341 def serialEvaluation(self, depGraph): argument
1372 ndepGraph = list(graph.DirectedGraph.topologicalSort(depGraph))
1427 depGraph = graph.DirectedGraph.topologicalSort(depGraph)
1430 for child in depGraph:
H A Dpackage.py994 depGraph = graph.DirectedGraph()
1011 addGraph(depGraph,startnode)
1012 return [sortnode for sortnode in graph.DirectedGraph.topologicalSort(depGraph,start=startnode)]