Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

An Introduction to Genetic Algorithms


March 1995/An Introduction to Genetic Algorithms/Listing 3

Listing 3 More member functions of class CGAChromosome

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

#include "chrom.h"

size_t    CGAChromosome::m_Count         = 0;
size_t    CGAChromosome::m_Length        = 0;
GABool*   CGAChromosome::m_CrossoverMask = 0;

// Default constructor and destructor.
// Create the chromosome with bits turned on at the
// given probability.

CGAChromosome::CGAChromosome(
   float Prob)
{
   assert(m_Length);
   m_Fitness  = 0;
   m_Data     = new GABool[m_Length];
   assert(m_Data);
   m_Count++;
   for (size_t Idx = 0; Idx < m_Length; Idx++) {
      m_Data[Idx] = Flip(Prob);
   }
   m_Fitness = CalcFitness(this);
}

CGAChromosome::~CGAChromosome(void)
{
  delete[] m_Data;
   if (--m_Count == 0) {
      delete[] m_CrossoverMask;
      m_Length        = 0;
      m_CrossoverMask = 0;
   }
}

// Mutate a single chromosome gene selected at
// random for a given probability.

void CGAChromosome::Mutate(
   float Prob)
{
   for (size_t Idx = 0; Idx < m_Length; Idx++) {
      if (Flip(Prob)) {
         m_Data[Idx] = !m_Data[Idx];
      }
   }
}

// Create two new offspring using a uniform crossover
// operator created with the given probability.

void Crossover(
   CGAChromosome* Parent1,
   CGAChromosome* Parent2,
   CGAChromosome*& Child1,
   CGAChromosome*& Child2,
   float Prob)
{
   CGAChromosome::InitializeCrossoverMask(0.5);
   Child1 = new CGAChromosome();
   Child2 = new CGAChromosome();
   assert(Child1 && Child2);

   for (size_t Idx = 0; Idx < CGAChromosome::m_Length;
       Idx++) {
     if (CGAChromosome::m_CrossoverMask[Idx]) {
        Child1->m_Data[Idx] = Parent1->m_Data[Idx];
        Child2->m_Data[Idx] = Parent2->m_Data[Idx];
     } else {
        Child1->m_Data[Idx] = Parent2->m_Data[Idx];
        Child2->m_Data[Idx] = Parent1->m_Data[Idx];
     }
   }
   Child1->Mutate(Prob);
   Child2->Mutate(Prob);
   Child1->m_Fitness = CalcFitness(Child1);
   Child2->m_Fitness = CalcFitness(Child2);
}

// Calculate the difference between two chromosomes

float CalcSimilarityRatio(
   CGAChromosome* Chrom1,
   CGAChromosome* Chrom2)
{
   for (size_t Idx = 0, MatchCount = 0;
       Idx < CGAChromosome::m_Length; Idx++) {
     if (Chrom1->m_Data[Idx] == Chrom2->m_Data[Idx]) {
        MatchCount++;
     }
   }
   return (float)MatchCount /
         (float)CGAChromosome::m_Length;
}

// Set the new chromosome to the opposite encoding
// of this chromosome.

CGAChromosome* CGAChromosome::complement(void) const
{
   CGAChromosome* Chromosome = new CGAChromosome;
   for (size_t Idx = 0; Idx < m_Length; Idx++) {
     Chromosome->m_Data[Idx] = !m_Data[Idx];
   }
   Chromosome->m_Fitness = CalcFitness(Chromosome);
   return Chromosome;
}

// Setup the crossover mask for creating the next
// offspring.

void CGAChromosome::InitializeCrossoverMask(
   float Prob)
{
   assert(m_Length && m_CrossoverMask);
   for (size_t Idx = 0; Idx < m_Length; Idx++) {
     m_CrossoverMask[Idx] = Flip(Prob);
   }
}

// Setup the chromosomes' length and allocate memory
// for the crossover mask.

void CGAChromosome::InitializeChromosomeClass(
   size_t Length)
{
   assert(Length);
   m_Length = Length;
   if (m_Count) != 0) {
     delete [] m_CrossoverMask;
   }
   m_CrossoverMask = new GaBool[m_Length];
   assert(m_CrossoverMask);
}
/* End of File */

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.