1 package Graph
::Undirected
;
11 Graph::Undirected - undirected graphs
15 use Graph::Undirected;
16 my $g = Graph::Undirected->new;
21 my $g = Graph->new(undirected => 1);
22 my $g = Graph->new(directed => 0);
26 Graph::Undirected allows you to create undirected graphs.
28 For the available methods, see L<Graph>.
32 L<Graph>, L<Graph::Directed>
34 =head1 AUTHOR AND COPYRIGHT
36 Jarkko Hietaniemi F<jhi@iki.fi>
40 This module is licensed under the same terms as Perl itself.
46 bless Graph
->new(undirected
=> 1, @_), ref $class || $class;