Algorithm-Evolutionary
view release on metacpan or search on metacpan
lib/Algorithm/Evolutionary/Op/Uniform_Crossover.pm view on Meta::CPAN
use strict;
use warnings;
=head1 NAME
Algorithm::Evolutionary::Op::Uniform_Crossover - interchanges a set of atoms
from one parent to the other.
=head1 SYNOPSIS
#Create from XML description using EvoSpec
my $xmlStr3=<<EOC;
<op name='Uniform_Crossover' type='binary' rate='1'>
<param name='numPoints' value='3' /> #Max is 2, anyways
</op>
EOC
my $op3 = Algorithm::Evolutionary::Op::Base->fromXML( $xmlStr3 );
print $op3->asXML(), "\n";
#Apply to 2 Individuals of the String class
my $indi = new Algorithm::Evolutionary::Individual::BitString 10;
my $indi2 = $indi->clone();
my $indi3 = $indi->clone();
my $offspring = $op3->apply( $indi2, $indi3 ); #$indi2 == $offspring
#Initialize using OO interface
my $op4 = new Algorithm::Evolutionary::Op::Uniform_Crossover 0.5;# Crossover rate
=head1 Base Class
L<Algorithm::Evolutionary::Op::Base|Algorithm::Evolutionary::Op::Base>
=head1 DESCRIPTION
General purpose uniform crossover operator
=head1 METHODS
=cut
package Algorithm::Evolutionary::Op::Uniform_Crossover;
use lib qw(../../..);
our ($VERSION) = ( '$Revision: 3.2 $ ' =~ /(\d+\.\d+)/ );
use Clone qw(clone);
use Carp;
use base 'Algorithm::Evolutionary::Op::Base';
#Class-wide constants
our $APPLIESTO = 'Algorithm::Evolutionary::Individual::String';
our $ARITY = 2;
our %parameters = ( crossover_rate => 2 );
=head2 new( [$options_hash] [, $operation_priority] )
Creates a new n-point crossover operator, with 2 as the default number
of points, that is, the default would be
my $options_hash = { crossover_rate => 0.5 };
my $priority = 1;
=cut
sub new {
my $class = shift;
my $hash = { crossover_rate => shift || 0.5 };
croak "Crossover probability must be less than 1"
if $hash->{'crossover_rate'} >= 1;
my $priority = shift || 1;
my $self = Algorithm::Evolutionary::Op::Base::new( $class, $priority, $hash );
return $self;
}
=head2 apply( $chromsosome_1, $chromosome_2 )
Applies xover operator to a "Chromosome", a string, really. Can be
applied only to I<victims> with the C<_str> instance variable; but
it checks before application that both operands are of type
L<String|Algorithm::Evolutionary::Individual::String>.
Changes the first parent, and returns it. If you want to change both
parents at the same time, check
L<QuadXOver|Algorithm::Evolutionary::Op::QuadXOver>
=cut
sub apply ($$$){
my $self = shift;
my $arg = shift || croak "No victim here!";
my $victim = clone( $arg );
my $victim2 = shift || croak "No victim here!";
my $min_length = ( $victim->size() > $victim2->size() )?
$victim2->size():$victim->size();
for ( my $i = 0; $i < $min_length; $i++ ) {
if ( rand() < $self->{'_crossover_rate'}) {
$victim->Atom($i, $victim2->Atom($i));
}
}
$victim->{'_fitness'} = undef;
return $victim;
}
=head1 Copyright
This file is released under the GPL. See the LICENSE file included in this distribution,
or go to http://www.fsf.org/licenses/gpl.txt
CVS Info: $Date: 2011/02/14 06:55:36 $
$Header: /media/Backup/Repos/opeal/opeal/Algorithm-Evolutionary/lib/Algorithm/Evolutionary/Op/Uniform_Crossover.pm,v 3.2 2011/02/14 06:55:36 jmerelo Exp $
$Author: jmerelo $
$Revision: 3.2 $
$Name $
=cut
( run in 0.471 second using v1.01-cache-2.11-cpan-5b529ec07f3 )