示例#1
0
 /// <summary>
 /// Resizes the internal data structures of the graph to handle the number of vertices/edges estimated.
 /// </summary>
 /// <param name="vertexEstimate"></param>
 /// <param name="edgeEstimate"></param>
 public override void Resize(long vertexEstimate, long edgeEstimate)
 {
     _graph.Resize(vertexEstimate, edgeEstimate);
 }