File Coverage

blib/lib/Math/PartialOrder.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # -*- Mode: Perl -*-
2              
3             #
4             # Copyright (c) 2001, Bryan Jurish. All rights reserved.
5             #
6             # This package is free software. You may redistribute it
7             # and/or modify it under the same terms as Perl itself.
8             #
9              
10             ###############################################################
11             #
12             # File: Math::PartialOrder.pm
13             # Author: Bryan Jurish
14             #
15             # Description: top-level default class for partial orders
16             #
17             ###############################################################
18              
19             package Math::PartialOrder;
20             require 5.6.0;
21 2     2   2624 use Math::PartialOrder::Std; # the default partial-order subclass
  2         6  
  2         203  
22             @ISA = qw(Math::PartialOrder::Std);
23             @EXPORT = qw();
24             @EXPORT_OK = @Math::PartialOrder::Base::EXPORT_OK;
25             %EXPORT_TAGS = %Math::PartialOrder::Base::EXPORT_TAGS;
26              
27             our $VERSION = 0.01;
28              
29             1;
30             __END__