Kaydet (Commit) 29e6df27 authored tarafından Faik Uygur's avatar Faik Uygur

Ooooo mighty graph algorithm class, pleeeaase let me fix

a tiny bug that has no comparision to the greaaatness of 
thyself.
I humbly bow on thy greatness, aaaaalll mighty one and 
the only one.
üst 78ffa14d
......@@ -46,7 +46,7 @@ class Digraph(object):
"return a list of edge descriptors"
list = []
for u in self.__v:
for v in self.__u:
for v in self.__adj[u]:
list.append( (u,v) )
return list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment