/* No IDs specified. If we are assigned to a graph, get the vertex
* count and iterate over all the vertices */
if (graph == null)
throw new UnsupportedOperationException("VertexSet is not assigned to a graph");
return new LongRangeIterator(0L, graph.vcount());
}
return this.ids.iterator();
}