5051525354555657585960
* * @param graph */ public CycleDetector( DirectedGraph graph ) { this.dfs = new DFS(); this.graph = graph; Iterator verts = graph.getVertices().iterator(); if ( verts.hasNext() ) {