Exemplo n.º 1
0
 public static bool IsErdoesGallai(global::Topologic.Graph graph, List <int> sequence)
 {
     return(graph.IsErdoesGallai(sequence));
 }
Exemplo n.º 2
0
 public static List <global::Topologic.Vertex> IsolatedVertices(global::Topologic.Graph graph)
 {
     return(graph.IsolatedVertices);
 }
Exemplo n.º 3
0
 public static bool IsComplete(global::Topologic.Graph graph)
 {
     return(graph.IsComplete);
 }
Exemplo n.º 4
0
 public static int TopologicalDistance(global::Topologic.Graph graph, global::Topologic.Vertex startVertex, global::Topologic.Vertex endVertex)
 {
     return(graph.TopologicalDistance(startVertex, endVertex));
 }
Exemplo n.º 5
0
 public static List <global::Topologic.Vertex> AdjacentVertices(global::Topologic.Graph graph, global::Topologic.Vertex vertex)
 {
     return(graph.AdjacentVertices(vertex));
 }
Exemplo n.º 6
0
 public static bool ContainsEdge(global::Topologic.Graph graph, global::Topologic.Edge edge, double tolerance = 0.0001)
 {
     return(graph.ContainsEdge(edge, tolerance));
 }
Exemplo n.º 7
0
 public static global::Topologic.Graph Connect(global::Topologic.Graph graph, global::Topologic.Vertex vertex1, global::Topologic.Vertex vertex2, double tolerance = 0.0001)
 {
     return(graph.Connect(vertex1, vertex2, tolerance));
 }
Exemplo n.º 8
0
 public static List <global::Topologic.Vertex> VerticesAtCoordinates(global::Topologic.Graph graph, double x, double y, double z,
                                                                     double tolerance = 0.0001)
 {
     return(graph.VerticesAtCoordinates(x, y, z, tolerance));
 }
Exemplo n.º 9
0
 public static global::Topologic.Graph RemoveVertices(global::Topologic.Graph graph, List <global::Topologic.Vertex> vertices)
 {
     return(graph.RemoveVertices(vertices));
 }
Exemplo n.º 10
0
 public static global::Topologic.Graph RemoveEdges(global::Topologic.Graph graph, List <global::Topologic.Edge> edges)
 {
     return(graph.RemoveEdges(edges));
 }
Exemplo n.º 11
0
 public static global::Topologic.Graph AddEdges(global::Topologic.Graph graph, List <global::Topologic.Edge> edges, double tolerance = 0.0001)
 {
     return(graph.AddEdges(edges, tolerance));
 }
Exemplo n.º 12
0
 public static int Diameter(global::Topologic.Graph graph)
 {
     return(graph.Diameter);
 }
Exemplo n.º 13
0
 public static int MaximumDelta(global::Topologic.Graph graph)
 {
     return(graph.MaximumDelta);
 }
Exemplo n.º 14
0
 public static List <global::Topologic.Edge> Edges(global::Topologic.Graph graph, List <global::Topologic.Vertex> vertices, double tolerance = 0.0001)
 {
     return(graph.Edges(vertices, tolerance));
 }
Exemplo n.º 15
0
 public static List <global::Topologic.Wire> AllPaths(global::Topologic.Graph graph, global::Topologic.Vertex startVertex, global::Topologic.Vertex endVertex, Nullable <int> timeLimitinSeconds)
 {
     return(graph.AllPaths(startVertex, endVertex, timeLimitinSeconds));
 }
Exemplo n.º 16
0
 public static global::Topologic.Topology Topology(global::Topologic.Graph graph)
 {
     return(graph.Topology);
 }
Exemplo n.º 17
0
 public static global::Topologic.Wire Path(global::Topologic.Graph graph, global::Topologic.Vertex startVertex, global::Topologic.Vertex endVertex)
 {
     return(graph.Path(startVertex, endVertex));
 }
Exemplo n.º 18
0
 public static int VertexDegree(global::Topologic.Graph graph, global::Topologic.Vertex vertex)
 {
     return(graph.VertexDegree(vertex));
 }
Exemplo n.º 19
0
 public static global::Topologic.Wire ShortestPath(global::Topologic.Graph graph, global::Topologic.Vertex startVertex, global::Topologic.Vertex endVertex, String vertexKey, String edgeKey)
 {
     return(graph.ShortestPath(startVertex, endVertex, vertexKey, edgeKey));
 }
Exemplo n.º 20
0
 public static bool ContainsVertex(global::Topologic.Graph graph, global::Topologic.Vertex vertex, double tolerance = 0.0001)
 {
     return(graph.ContainsVertex(vertex, tolerance));
 }
Exemplo n.º 21
0
 public static List <global::Topologic.Wire> ShortestPaths(global::Topologic.Graph graph, global::Topologic.Vertex startVertex, global::Topologic.Vertex endVertex, String vertexKey, String edgeKey, Nullable <int> timeLimitinSeconds)
 {
     return(graph.ShortestPaths(startVertex, endVertex, vertexKey, edgeKey, timeLimitinSeconds));
 }
Exemplo n.º 22
0
 public static List <int> DegreeSequence(global::Topologic.Graph graph)
 {
     return(graph.DegreeSequence);
 }
Exemplo n.º 23
0
 public static double Density(global::Topologic.Graph graph)
 {
     return(graph.Density);
 }