Ejemplo n.º 1
0
 public static int CountEdges(IGraph graph, EdgeType edgeType, IActionExecutionEnvironment actionEnv, int threadId)
 {
     return graph.GetNumCompatibleEdges(edgeType);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Returns the count of the edges in the graph of the type given
 /// </summary>
 public static int CountEdges(IGraph graph, EdgeType edgeType, int threadId)
 {
     return graph.GetNumCompatibleEdges(edgeType);
 }