AI-NeuralNet-Simple

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

--- #YAML:1.0
name:                AI-NeuralNet-Simple
version:             0.11
abstract:            An easy to use backprop neural net.
license:             perl
generated_by:        ExtUtils::MakeMaker version 6.31
distribution_type:   module
requires:     
    Log::Agent:                    0.208
    Sub::Uplevel:                  0
    Test::Exception:               0.15
    Test::More:                    0.48_01
meta-spec:
    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
    version: 1.2
author:
    - Curtis "Ovid" Poe <ovid@cpan.org>

Makefile.PL  view on Meta::CPAN

my $module  = 'lib/AI/NeuralNet/Simple.pm';
my $ccflags = -d '.svn' ? '-Wall' : '';

WriteMakefile(
    'NAME'         => 'AI::NeuralNet::Simple',
    'VERSION_FROM' => $module,                   # finds $VERSION
    'CCFLAGS'      => $ccflags,
    'LICENSE'      => 'perl',
    'PREREQ_PM'    => {
        'Log::Agent'      => '0.208',
        'Test::More'      => '0.48_01',
        'Test::Exception' => '0.15',
        'Sub::Uplevel'    => 0,                  # hate it, hate it, hate it
    },
    (   $] >= 5.005
        ?    ## Add these new keywords supported since 5.005
          ( ABSTRACT_FROM => $module,    # retrieve abstract from module
            AUTHOR => 'Curtis "Ovid" Poe <ovid@cpan.org>'
          )
        : ()
    ),
);

t/10nn_simple.t  view on Meta::CPAN

use Test::More tests => 22;
use Test::Exception;
use strict;

my $CLASS;
BEGIN {
    unshift @INC => 'blib/lib/', '../blib/lib/';
    $CLASS = 'AI::NeuralNet::Simple';
    use_ok($CLASS) || die; 
};

can_ok($CLASS, 'new');

t/20nn_multi.t  view on Meta::CPAN

use Test::More tests => 14;
use Test::Exception;
use strict;

my $CLASS;
BEGIN {
    unshift @INC => 'blib/lib/', '../blib/lib/';
    $CLASS = 'AI::NeuralNet::Simple';
    use_ok($CLASS) || die; 
};

can_ok($CLASS, 'new');

t/30nn_storable.t  view on Meta::CPAN

use Test::More tests => 15;
use Test::Exception;
use Storable;
use strict;

my $CLASS;
BEGIN {
    unshift @INC => 'blib/lib/', '../blib/lib/';
    $CLASS = 'AI::NeuralNet::Simple';
    use_ok($CLASS) || die; 
};

t/pod-coverage.t  view on Meta::CPAN

#!perl -T

use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan $@ 
  ? (skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage")
  : ( tests => 1 );

my $ignore = join '|' => qw(
    STORABLE_freeze
    STORABLE_thaw
    build_axaref
    build_rv
    c_destroy_network
    c_export_network
    c_get_delta

t/pod.t  view on Meta::CPAN

#!perl -T

use Test::More;
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();

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

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