File Coverage

blib/lib/Graph/Traversal/BFS.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 23 25 92.0


line stmt bran cond sub pod time code
1             package Graph::Traversal::BFS;
2              
3 1     1   383 use strict;
  1         2  
  1         24  
4 1     1   4 use warnings;
  1         2  
  1         21  
5              
6 1     1   378 use Graph::Traversal;
  1         2  
  1         27  
7 1     1   6 use base 'Graph::Traversal';
  1         1  
  1         137  
8              
9             sub current {
10 58     58 0 65 my $self = shift;
11 58         94 $self->{ order }->[ 0 ];
12             }
13              
14             sub see {
15 33     33 0 44 my $self = shift;
16 33         36 shift @{ $self->{ order } };
  33         73  
17             }
18              
19             *bfs = \&Graph::Traversal::postorder;
20              
21             1;
22             __END__