AI-NeuralNet-Hopfield
view release on metacpan or search on metacpan
111213141516171819202122232425262728293031to provide version information here so that people can decide whether
fixes
for
the module are worth downloading.
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
SUPPORT AND DOCUMENTATION
After installing, you can find documentation
for
this module
with
the
perldoc command.
perldoc AI::NeuralNet::Hopfield
You can also look
for
information at:
t/00-load.t view on Meta::CPAN
123456789101112131415#!perl -T
use
5.006;
use
strict;
use
Test::More;
plan
tests
=> 2;
BEGIN {
use_ok(
'AI::NeuralNet::Hopfield'
) ||
"Bail out!\n"
;
use_ok(
'Math::SparseMatrix'
) ||
"Bail out\n"
;
}
diag(
"Testing AI::NeuralNet::Hopfield $AI::NeuralNet::Hopfield::VERSION, Perl $], $^X"
);
t/manifest.t view on Meta::CPAN
123456789101112131415#!perl -T
use
5.006;
use
strict;
use
Test::More;
unless
(
$ENV
{RELEASE_TESTING} ) {
plan(
skip_all
=>
"Author tests not required for installation"
);
}
my
$min_tcm
= 0.9;
eval
"use Test::CheckManifest $min_tcm"
;
plan
skip_all
=>
"Test::CheckManifest $min_tcm required"
if
$@;
ok_manifest();
( run in 0.356 second using v1.01-cache-2.11-cpan-00829025b61 )