Incorrect search filter: invalid characters - *.p[ml]
AI-NeuralNet-Hopfield

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
to 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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
 
plan tests => 2;
 
BEGIN {
    use_ok( 'AI::NeuralNet::Hopfield' ) || print "Bail out!\n";
        use_ok( 'Math::SparseMatrix' ) || print "Bail out\n";
 
}
 
diag( "Testing AI::NeuralNet::Hopfield $AI::NeuralNet::Hopfield::VERSION, Perl $], $^X" );

t/manifest.t  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
 
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 )