Algorithm-Accounting
view release on metacpan or search on metacpan
inc/Module/Install/Win32.pm view on Meta::CPAN
http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe
or
ftp://ftp.microsoft.com/Softlib/MSLFILES/Nmake15.exe
Please download the file manually, save it to a directory in %PATH% (e.g.
C:\WINDOWS\COMMAND\), then launch the MS-DOS command line shell, "cd" to
that directory, and run "Nmake15.exe" from there; that will create the
'nmake.exe' file needed by this module.
You may then resume the installation process described in README.
-------------------------------------------------------------------------------
.
}
}
1;
__END__
lib/Algorithm/Accounting.pm view on Meta::CPAN
}
sub report {
my $class = $self->report_class;
my $obj;
eval qq{
require $class;
\$obj = $class->new;
};
die"report() error\n" if $@;
$obj->process(
$self->occurrence_hash,
$self->field_groups,
$self->group_occurrence
);
}
sub update_group_field {
my $data = shift;
my $groups = $self->field_groups || return;
my $gocc = $self->group_occurrence;
lib/Algorithm/Accounting/Report.pm view on Meta::CPAN
package Algorithm::Accounting::Report;
use Spiffy -Base;
our $VERSION = '0.02';
sub process {
my ($occhash,$field_groups,$group_occ) = @_;
for(keys %{$occhash}) {
$self->report_occurrence_percentage($_,$occhash);
}
for(0..@{$field_groups}-1) {
$self->report_field_group_occurrence_percentage($_,$field_groups,$group_occ);
}
}
__END__
( run in 0.268 second using v1.01-cache-2.11-cpan-8d75d55dd25 )