3 references to TryIterativeSort
Microsoft.CodeAnalysis.CSharp (3)
Binder\DecisionDagBuilder.cs (1)
1640return TopologicalSort.TryIterativeSort(this.RootNode, AddSuccessor, out result);
Binder\SwitchExpressionBinder.cs (1)
88bool wasAcyclic = TopologicalSort.TryIterativeSort(decisionDag.RootNode, addNonNullSuccessors, out var nodes);
BoundTree\BoundDecisionDag.cs (1)
78bool wasAcyclic = TopologicalSort.TryIterativeSort(this.RootNode, AddSuccessors, out _topologicallySortedNodes);