コード例 #1
0
 public static Set GetSuccessors(Graph graph, Set point)
 {
     return graph.getSuccessors(point);
 } 
コード例 #2
0
 public static List FindPath(Graph graph, Set from, Set to)
 {
     return graph.findPath(from, to);
 } 
コード例 #3
0
 public static bool PathExists(Graph graph, Set from, Set to)
 {
     return (graph as HistoryGraph).findPath(from, to) != null;
 }