AI-NeuralNet-Hopfield

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "AI-NeuralNet-Hopfield",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::More" : 0
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : 0
         }
      },
      "runtime" : {
         "requires" : {
            "Math::SparseMatrix" : "0.03",

META.yml  view on Meta::CPAN

---
abstract: 'A simple Hopfiled Network Implementation.'
author:
  - 'leprevost <leprevost@cpan.org>'
build_requires:
  Test::More: 0
configure_requires:
  ExtUtils::MakeMaker: 0
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.112621'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: AI-NeuralNet-Hopfield
no_index:

Makefile.PL  view on Meta::CPAN

    AUTHOR           => q{leprevost <leprevost@cpan.org>},
    VERSION_FROM     => 'lib/AI/NeuralNet/Hopfield.pm',
    ABSTRACT_FROM    => 'lib/AI/NeuralNet/Hopfield.pm',
    LICENSE          => 'perl',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'Moose' => 2.0604,
	    'Math::SparseMatrix' => 0.03,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'AI-NeuralNet-Hopfield-*' },
);

t/00-load.t  view on Meta::CPAN

#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

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

#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
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();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.425 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )