Version 0.99.03
[nasm/avx512.git] / perllib / Graph / Directed.pm
blob9c3fc86d8d7597c0735d18ff7a3207d71bf1f8c1
1 package Graph::Directed;
3 use Graph;
4 use base 'Graph';
5 use strict;
7 =pod
9 =head1 NAME
11 Graph::Directed - directed graphs
13 =head1 SYNOPSIS
15 use Graph::Directed;
16 my $g = Graph::Directed->new;
18 # Or alternatively:
20 use Graph;
21 my $g = Graph->new(directed => 1);
22 my $g = Graph->new(undirected => 0);
24 =head1 DESCRIPTION
26 Graph::Directed allows you to create directed graphs.
28 For the available methods, see L<Graph>.
30 =head1 SEE ALSO
32 L<Graph>, L<Graph::Undirected>
34 =head1 AUTHOR AND COPYRIGHT
36 Jarkko Hietaniemi F<jhi@iki.fi>
38 =head1 LICENSE
40 This module is licensed under the same terms as Perl itself.
42 =cut