in reply to character flipping

are you doing a genetic algorithm in perl? 'cause if you are take it from someone who has implemented a LOT of GA packages in perl, you WANT to use Bit::Vector... trust me.

Replies are listed 'Best First'.
RE: Re: character flipping
by ar0n (Priest) on Jun 09, 2000 at 23:20 UTC
    grin...

    yep!

    I'm making a little perl script that solves cryptograms. I'm too lazy to it myself, and too curious not to try to find out what the solution is :-)

    The $astr in the mutate() function is an alphabet string. Being thusly every character should be unique. So unless I'm missing something (which happen alot -- believe you me), I don't think I'll be needing Bit::Vector. I will put in /cool_stuff though.

    Thanks!