File Coverage

blib/lib/Math/LP/LinearCombination.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Math::LP::LinearCombination;
2 4     4   23 use strict;
  4         8  
  4         169  
3             #use Math::LP::Object;
4 4     4   4330 use Math::LinearCombination;
  4         32612  
  4         120  
5 4     4   2656 use Math::LP::Variable;
  4         11  
  4         102  
6 4     4   22 use base qw(Math::LinearCombination);
  4         8  
  4         418  
7             use fields(
8 4         15 'value', # cached value
9 4     4   29 );
  4         7  
10              
11             1;
12              
13             __END__