line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
26087
|
use strict; #-*-cperl-*- |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
74
|
|
2
|
2
|
|
|
2
|
|
11
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
68
|
|
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
10
|
use lib qw( ../../lib ../../../lib ../../../../lib); |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
13
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
Algorithm::Evolutionary::Op::String_Mutation - Single character string mutation |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 SYNOPSIS |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
#Create from scratch with priority = 2 |
13
|
|
|
|
|
|
|
my $op = new Algorithm::Evolutionary::Op::String_Mutation 2; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 Base Class |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
L |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Mutation operator for a GA; changes a single character in the string. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 METHODS |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
package Algorithm::Evolutionary::Op::String_Mutation; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
our $VERSION = sprintf "%d.%03d", q$Revision: 3.7 $ =~ /(\d+)\.(\d+)/g; |
30
|
|
|
|
|
|
|
|
31
|
2
|
|
|
2
|
|
689
|
use Carp; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
194
|
|
32
|
|
|
|
|
|
|
|
33
|
2
|
|
|
2
|
|
10
|
use base 'Algorithm::Evolutionary::Op::Base'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
790
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
#Class-wide constants |
36
|
|
|
|
|
|
|
our $ARITY = 1; |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 new( [$how_many] [,$priority] ) |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Creates a new mutation operator with an application rate that defaults to 0.5, |
41
|
|
|
|
|
|
|
and an operator application rate (general for all ops), which defaults to 1. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
sub new { |
46
|
|
|
|
|
|
|
my $class = shift; |
47
|
|
|
|
|
|
|
my $howMany = shift || 1; |
48
|
|
|
|
|
|
|
my $rate = shift || 1; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
my $hash = { howMany => $howMany || 1}; |
51
|
|
|
|
|
|
|
my $self = Algorithm::Evolutionary::Op::Base::new( 'Algorithm::Evolutionary::Op::String_Mutation', |
52
|
|
|
|
|
|
|
$rate, $hash ); |
53
|
|
|
|
|
|
|
return $self; |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 create() |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Creates a new mutation operator. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
sub create { |
63
|
|
|
|
|
|
|
my $class = shift; |
64
|
|
|
|
|
|
|
my $self = {}; |
65
|
|
|
|
|
|
|
bless $self, $class; |
66
|
|
|
|
|
|
|
return $self; |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 apply( $chromosome ) |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Applies mutation operator to a "Chromosome", a string, really. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=cut |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
sub apply ($;$){ |
76
|
|
|
|
|
|
|
my $self = shift; |
77
|
|
|
|
|
|
|
my $arg = shift || croak "No victim here!"; |
78
|
|
|
|
|
|
|
my $victim = $arg->clone(); |
79
|
|
|
|
|
|
|
my $size = length($victim->{'_str'}); |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
croak "Too many changes" if $self->{'_howMany'} >= $size; |
82
|
|
|
|
|
|
|
my @char_array = 0..($size-1); # Avoids double mutation in a single place |
83
|
|
|
|
|
|
|
for ( my $i = 0; $i < $self->{'_howMany'}; $i++ ) { |
84
|
|
|
|
|
|
|
my $rnd = int (rand( @char_array )); |
85
|
|
|
|
|
|
|
my $who = splice(@char_array, $rnd, 1 ); |
86
|
|
|
|
|
|
|
my $what = $victim->Atom( $who ); |
87
|
|
|
|
|
|
|
my @these_chars = @{ $victim->{'_chars'}}; |
88
|
|
|
|
|
|
|
for ( my $c = 0; $c < @{ $victim->{'_chars'}}; $c++ ) { #Exclude this character |
89
|
|
|
|
|
|
|
if ( $victim->{'_chars'}[$c] eq $what ) { |
90
|
|
|
|
|
|
|
splice( @these_chars, $c, 1 ); |
91
|
|
|
|
|
|
|
last; |
92
|
|
|
|
|
|
|
} |
93
|
|
|
|
|
|
|
} |
94
|
|
|
|
|
|
|
$victim->Atom( $who, $these_chars[rand(@these_chars)] ); |
95
|
|
|
|
|
|
|
} |
96
|
|
|
|
|
|
|
$victim->{'_fitness'} = undef ; |
97
|
|
|
|
|
|
|
return $victim; |
98
|
|
|
|
|
|
|
} |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head1 Copyright |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
This file is released under the GPL. See the LICENSE file included in this distribution, |
103
|
|
|
|
|
|
|
or go to http://www.fsf.org/licenses/gpl.txt |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
CVS Info: $Date: 2013/01/05 12:01:58 $ |
106
|
|
|
|
|
|
|
$Header: /media/Backup/Repos/opeal/opeal/Algorithm-Evolutionary/lib/Algorithm/Evolutionary/Op/String_Mutation.pm,v 3.7 2013/01/05 12:01:58 jmerelo Exp $ |
107
|
|
|
|
|
|
|
$Author: jmerelo $ |
108
|
|
|
|
|
|
|
$Revision: 3.7 $ |
109
|
|
|
|
|
|
|
$Name $ |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=cut |
112
|
|
|
|
|
|
|
|