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   461564 use Graph;
  26         68  
  26         967  
4 26     26   136 use base 'Graph';
  26         43  
  26         3548  
5 26     26   174 use strict;
  26         41  
  26         513  
6 26     26   106 use warnings;
  26         43  
  26         1174  
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;