Home
last modified time | relevance | path

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

/DragonReach/src/executor/dep_graph/
H A Dmod.rs54 let mut stack = Vec::new(); in topological_sort() localVariable
57 stack.push(i); in topological_sort()
60 while stack.len() > 0 { in topological_sort()
61 let index = stack.pop().unwrap(); in topological_sort()
72 stack.push(edge); in topological_sort()
/DragonReach/src/parse/graph/
H A Dmod.rs56 let mut stack = Vec::new(); in topological_sort() localVariable
59 stack.push(i); in topological_sort()
62 while stack.len() > 0 { in topological_sort()
63 let index = stack.pop().unwrap(); in topological_sort()
74 stack.push(edge); in topological_sort()