Skip Menu |

This queue is for tickets about the Graph CPAN distribution.

Report information
The Basics
Id: 11543
Status: resolved
Priority: 0/
Queue: Graph

People
Owner: Nobody in particular
Requestors: natg [...] shore.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.55
Fixed in: (no value)



Subject: self-edges reported twice in edges_at
Hi Jarkko I don't know if this intentional or a bug, but self-edges are reported twice by edges_at. ---------- bug.pl ---------- use strict; use Graph::Directed; my $g=new Graph::Directed(); $g->add_edge(0,0); my @e=$g->edges_at(0); map {print "@$_\n"} @e; Show quoted text
---------- output ----------
> perl bug.pl
0 0 0 0 ---------- Best, Nat
I believe this was fixed by Graph 0.58.