Open GoogleCodeExporter opened 9 years ago
Hello, blurrCat. I failed to reproduce the problem here. Could you provide a
small program that produces the bug?
Also, as you are using a graph, trying to remove all edges listed in g.edges()
will produce an exception as:
- g.edges() returns a pair of tuples (a,b) and (b,a) for each edge connecting
nodes a and b;
- g.del_edge((a,b)) removes both (a,b) and (b, a)
- the for-each loop will call both g.del_edge((a,b)) (which should succeed) and
g.del_edge((b,a)) (which should fail)
Original comment by pmatiello
on 14 Jul 2012 at 9:05
Original issue reported on code.google.com by
blurr...@gmail.com
on 27 Jun 2012 at 6:35