1Graph::Directed(3) User Contributed Perl Documentation Graph::Directed(3)
2
3
4
6 Graph::Directed - directed graphs
7
9 use Graph::Directed;
10 my $g = Graph::Directed->new;
11
12 # Or alternatively:
13
14 use Graph;
15 my $g = Graph->new(directed => 1);
16 my $g = Graph->new(undirected => 0);
17
19 Graph::Directed allows you to create directed graphs.
20
21 For the available methods, see Graph.
22
24 Graph, Graph::Undirected
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.38.0 2023-07-25 Graph::Directed(3)