in reply to Genetic Programming or breeding Perls
could be:my $code = ""; map { $code .= $_} (@{$self->{GENES}});
Also, if your Individual->create() method returned $self at the end, you could change this (in Population->new):my $code = join('', @{$self->{GENES}});
To this:for my $i (0 .. $self->{SIZE}) { my $individual = Individual->new(); $individual->create(); push (@{$self->{INDIVIDUALS}}, $individual); }
Or maybe even this:push (@{$self->{INDIVIDUALS}}, Individual->new->create) for 0..$self-> +{SIZE};
But now I'm probably being too nit-picky :) </code>$self->{INDIVIDUALS} = [ map {Individual->new->create} 0..$self->{SIZE +} ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Genetic Programming or breeding Perls
by gumpu (Friar) on Sep 27, 2000 at 21:38 UTC |