line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Graph::Directed; |
2
|
|
|
|
|
|
|
|
3
|
26
|
|
|
26
|
|
509403
|
use Graph; |
|
26
|
|
|
|
|
95
|
|
|
26
|
|
|
|
|
904
|
|
4
|
26
|
|
|
26
|
|
179
|
use base 'Graph'; |
|
26
|
|
|
|
|
89
|
|
|
26
|
|
|
|
|
4056
|
|
5
|
26
|
|
|
26
|
|
174
|
use strict; |
|
26
|
|
|
|
|
51
|
|
|
26
|
|
|
|
|
622
|
|
6
|
26
|
|
|
26
|
|
141
|
use warnings; |
|
26
|
|
|
|
|
55
|
|
|
26
|
|
|
|
|
1320
|
|
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; |