Ejemplo n.º 1
0
 /// <summary>
 /// Sorts the vertices in the given graph based on a hilbert curve using the default step count.
 /// </summary>
 /// <typeparam name="TEdgeData"></typeparam>
 /// <param name="graph"></param>
 /// <param name="n"></param>
 public static void SortHilbert <TEdgeData>(this GraphBase <TEdgeData> graph)
     where TEdgeData : struct, IGraphEdgeData
 {
     graph.SortHilbert(IGraphExtensions.DefaultHilbertSteps);
 }