1Graph::Undirected(3) User Contributed Perl Documentation Graph::Undirected(3)
2
3
4
6 Graph::Undirected - undirected graphs
7
9 use Graph::Undirected;
10 my $g = Graph::Undirected->new;
11
12 # Or alternatively:
13
14 use Graph;
15 my $g = Graph->new(undirected => 1);
16 my $g = Graph->new(directed => 0);
17
19 Graph::Undirected allows you to create undirected graphs.
20
21 For the available methods, see Graph.
22
24 Graph, Graph::Directed
25
27 Jarkko Hietaniemi jhi@iki.fi
28
30 This module is licensed under the same terms as Perl itself.
31
32
33
34perl v5.8.8 2004-11-08 Graph::Undirected(3)