Skip to content
Snippets Groups Projects
Commit 8c70cb4c authored by Udo Klein's avatar Udo Klein Committed by Sean Owen
Browse files

fixed numVertices in transitive closure example

Author: Udo Klein <git@blinkenlight.net>

Closes #10642 from udoklein/patch-2.
parent 00d92617
No related branches found
No related tags found
No related merge requests found
......@@ -30,8 +30,8 @@ rand = Random(42)
def generateGraph():
edges = set()
while len(edges) < numEdges:
src = rand.randrange(0, numEdges)
dst = rand.randrange(0, numEdges)
src = rand.randrange(0, numVertices)
dst = rand.randrange(0, numVertices)
if src != dst:
edges.add((src, dst))
return edges
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment