File Coverage

blib/lib/Graph/Directed.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Graph::Directed;
2              
3 26     26   525474 use Graph;
  26         77  
  26         927  
4 26     26   163 use base 'Graph';
  26         55  
  26         4037  
5 26     26   187 use strict;
  26         57  
  26         582  
6 26     26   141 use warnings;
  26         59  
  26         1222  
7              
8             =pod
9              
10             =head1 NAME
11              
12             Graph::Directed - directed graphs
13              
14             =head1 SYNOPSIS
15              
16             use Graph::Directed;
17             my $g = Graph::Directed->new;
18              
19             # Or alternatively:
20              
21             use Graph;
22             my $g = Graph->new(directed => 1);
23             my $g = Graph->new(undirected => 0);
24              
25             =head1 DESCRIPTION
26              
27             Graph::Directed allows you to create directed graphs.
28              
29             For the available methods, see L.
30              
31             =head1 SEE ALSO
32              
33             L, L
34              
35             =head1 AUTHOR AND COPYRIGHT
36              
37             Jarkko Hietaniemi F
38              
39             =head1 LICENSE
40              
41             This module is licensed under the same terms as Perl itself.
42              
43             =cut
44              
45             1;