File Coverage

blib/lib/Algorithm/CRF.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 Algorithm::CRF;
2              
3 2     2   50340 use 5.008008;
  2         7  
  2         71  
4 2     2   10 use strict;
  2         5  
  2         79  
5 2     2   17 use warnings;
  2         7  
  2         447  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             # Items to export into callers namespace by default. Note: do not export
12             # names by default without a very good reason. Use EXPORT_OK instead.
13             # Do not simply export all your public functions/methods/constants.
14              
15             # This allows declaration use Algorithm::CRF ':all';
16             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
17             # will save memory.
18             our %EXPORT_TAGS = ( 'all' => [ qw(
19            
20             ) ] );
21              
22             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23              
24             our @EXPORT = qw(
25            
26             );
27              
28             our $VERSION = '0.04';
29              
30             require XSLoader;
31             XSLoader::load('Algorithm::CRF', $VERSION);
32              
33             sub new {
34 1     1   12 my $package = shift;
35 1         4 my $self = bless {
36             @_,
37             }, $package;
38 1         4 return $self;
39             }
40              
41             my @params =
42             qw(
43             freq
44             maxiter
45             cost
46             eta
47             convert
48             textmodel
49             version
50             help
51             );
52              
53              
54              
55             1;
56             __END__