Algorithm-Evolutionary-Utils

 view release on metacpan or  search on metacpan

lib/Algorithm/Evolutionary/Utils.pm  view on Meta::CPAN

use strict; #-*-CPerl-*-
use warnings;

use lib qw( ../../../lib );

=encoding utf8

=head1 NAME

Algorithm::Evolutionary::Utils - Collection of functions used in all kind of evolutionary algorithms..

=head1 SYNOPSIS
  
   use Algorithm::Evolutionary::Utils qw(entropy genotypic_entropy hamming consensus average random_bitstring random_number_array decode_string vector_compare );

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

#!perl -T

use Test::More tests => 2;
use lib qw( lib ../lib ../../lib  ); #Just in case we are testing it in-place

BEGIN {
	use_ok( 'Algorithm::Evolutionary::Utils' );
	use_ok( 'Algorithm::Evolutionary::Utils', qw(entropy genotypic_entropy hamming consensus average random_bitstring random_number_array decode_string vector_compare )); # Just three examples, testing the import mechanism
}

diag( "Testing Algorithm::Evolutionary::Utils $Algorithm::Evolutionary::Utils::VERSION, Perl $], $^X" );



( run in 0.388 second using v1.01-cache-2.11-cpan-87723dcf8b7 )