File Coverage

blib/lib/Math/Gauss/XS.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Math::Gauss::XS;
2 1     1   13634 use warnings;
  1         2  
  1         29  
3 1     1   3 use strict;
  1         1  
  1         81  
4              
5             our $VERSION = '0.01_2';
6              
7             require Exporter;
8              
9             our %EXPORT_TAGS = (
10             'all' => [ qw(pdf cdf inv_cdf) ],
11             );
12              
13             our @ISA = qw(Exporter);
14              
15             our @EXPORT = qw( pdf cdf inv_cdf);
16              
17             require XSLoader;
18             XSLoader::load('Math::Gauss::XS', $VERSION);
19              
20             1;