Removed bad idea

This commit is contained in:
Mike 2018-04-14 19:15:31 -07:00
parent b2f164f464
commit cb0f81b3e1
1 changed files with 4 additions and 4 deletions

View File

@ -60,10 +60,10 @@ namespace BitEvolver
void Breeder::Mutate(std::shared_ptr<Chromosome> chromosome, double mutation_rate)
{
//
int i, size;
//
#warning "For efficiency, let's instead roll the number of bits to flip in advance, and loop that many times (faster than rolling for every bit)"
int
i,
size
;
//
size = chromosome->GetBitCount();