http://www.perlmonks.org?node_id=31188


in reply to RE: Genetic Programming or breeding Perls
in thread Genetic Programming or breeding Perls

He also left out multiplication and subtraction. Presumably it was to minimize the operators used. I was a bit surprised at "|=" myself.
  • Comment on RE: RE: Genetic Programming or breeding Perls

Replies are listed 'Best First'.
RE: RE: RE: Genetic Programming or breeding Perls
by gumpu (Friar) on Sep 06, 2000 at 13:29 UTC

    Presumably it was to minimize the operators used.

    Yup. It thought it would make it easier to understand the problem (the programming challenge). It is also to limit the number of possible solutions. If there are many building blocks the search space is large but also full of good solutions. Then even a random search works. With this I hoped to demonstrate that even with limited building blocks the algorithm can work to a good solution. (It would be interesting to create a Perl program that can determine the solution density, say using monte carlo or so).

    I was a bit surprised at

    |=

    myself.

    :) I added that to show that the algorithm can come up with solutions that are not easily visable to humans. You can even add things like

    $x ^= 715; $x >>= 1;

    and it will come up with surprising results.

    Have Fun