Graph::Undirected (3)
Leading comments
Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) Standard preamble: ========================================================================
NAME
Graph::Undirected - undirected graphsSYNOPSIS
use Graph::Undirected; my $g = Graph::Undirected->new; # Or alternatively: use Graph; my $g = Graph->new(undirected => 1); my $g = Graph->new(directed => 0);
DESCRIPTION
Graph::Undirected allows you to create undirected graphs.For the available methods, see Graph.