1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
functor GlobalCriticalPath
(DDG : SCHEDULER_DDG) : SCHEDULING_RANKS where type edge = DDG.edge =
struct
structure DDG = DDG
structure I = DDG.I
structure G = Graph
structure A = Array
type edge = DDG.edge
fun rank(DDG as G.GRAPH ddg) =
let val N = #capacity ddg ()
val len = A.array(N,0)
val children = A.tabulate(N,fn i => length(#out_edges ddg i))
fun process i =
let fun g((i,j,DDG.EDGE{l,...})::es,n) =
g(es,Int.max(A.sub(len,j) + l + 1,n))
| g([],n) = n
in A.update(len,i,g(#out_edges ddg i,0))
end
fun order((i,_),(j,_)) =
case Int.compare(A.sub(len,i),A.sub(len,j)) of
EQUAL => A.sub(children,i) > A.sub(children,j)
| LESS => false
| GREATER => true
in app process (rev (GraphTopsort.topsort DDG (map #1 (#nodes ddg ()))));
order
end
end
|