コード例 #1
0
 private static DFSTree BuildTreeInternal(DFSTBuilder theBuilder)
 {
     theBuilder.MapChilds();
     theBuilder.TraverseAndBuildTree();
     return(theBuilder.theTree);
 }
コード例 #2
0
 public static DFSTree BuildTree(ISingleEntrySubGraph theGraph)
 {
     return(DFSTBuilder.BuildTree(theGraph, theGraph.get_Entry()));
 }
コード例 #3
0
 public static DFSTree BuildTree(ISingleEntrySubGraph theGraph, ISingleEntrySubGraph entry)
 {
     return(DFSTBuilder.BuildTreeInternal(new DFSTBuilder(theGraph, entry)));
 }
コード例 #4
0
 private static DFSTree BuildTreeInternal(DFSTBuilder theBuilder)
 {
     theBuilder.MapChilds();
     theBuilder.TraverseAndBuildTree();
     return theBuilder.theTree;
 }