File Coverage

blib/lib/Math/GSLx/ODEIV2.pm
Criterion Covered Total %
statement 10 12 83.3
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 16 87.5


line stmt bran cond sub pod time code
1             package Math::GSLx::ODEIV2;
2              
3 6     6   203855 use 5.008000;
  6         25  
  6         252  
4 6     6   35 use strict;
  6         11  
  6         208  
5 6     6   44 use warnings;
  6         9  
  6         226  
6              
7 6     6   22284 use PerlGSL::DiffEq ':all';
  0            
  0            
8              
9             use parent 'Exporter';
10             our @EXPORT = ( qw/ ode_solver / );
11             our @EXPORT_OK = ( qw/ get_gsl_version get_step_types / );
12              
13             our %EXPORT_TAGS;
14             push @{$EXPORT_TAGS{all}}, @EXPORT, @EXPORT_OK;
15              
16             our $VERSION = '0.08';
17             $VERSION = eval $VERSION;
18              
19              
20             1;
21              
22             __END__