Need more nodes for Graph

public interface IGraph<V, E> {
/** Number of vertices in the graph */
public int numVertices();

Can’t load 10^10 nodes into the IGraph, can change the size type from int to long?