⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 incrementalalgorithm.cpp

📁 遗传算法做图像的模式匹配
💻 CPP
字号:

/*! \file IncrementalAlgorithm.cpp
    \brief This file implements class of incremental genetic algorithm with overlapping population.
*/

/*
 * 
 * website: http://www.coolsoft-sd.com/
 * contact: support@coolsoft-sd.com
 *
 */

/*
 * Genetic Algorithm Library
 * Copyright (C) 2007-2008 Coolsoft Software Development
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */

#include "Population.h"
#include "IncrementalAlgorithm.h"

namespace Algorithm
{
	namespace SimpleAlgorithms
	{

		// Sets new parameters for algorithm
		void GaIncrementalAlgorithm::SetAlgorithmParameters(const GaAlgorithmParams& parameters)
		{
			// change parameters of multithreading
			GaMultithreadingAlgorithm::SetAlgorithmParameters( parameters );

			// save parameters
			_parameters = (const GaMultithreadingAlgorithmParams&) parameters;
		}

		// Step of control flow before workers start
		void GaIncrementalAlgorithm::BeforeWorkers()
		{
			// update statistics of population
			_population->NextGeneration();

			// get buffers
			GaSelectionResultSet* selection = &_buffer->GetSelectionResultSet();

			// change the buffers' sizes if needed
			selection->SelectedGroup().SetMaxSize( _population->GetConfiguration().Selection().GetParameters().GetSelectionSize() );
			_buffer->SetNumberOfOffsprings( _population->GetConfiguration().Coupling().GetParameters().GetNumberOfOffsprings() );

			// selection
			_population->GetConfiguration().Selection().GetOperation()( *_population, _population->GetConfiguration().Selection().GetParameters(), *selection );
		}

		// One step of work flow
		void GaIncrementalAlgorithm::WorkStep(int workerId)
		{
			// coupling
			_population->GetConfiguration().Coupling().GetOperation()( *_population, *_buffer, _population->GetConfiguration().Coupling().GetParameters(), 
				workerId, _parameters.GetNumberOfWorkers() );
		}

		// Step of control flow after workers finish
		void GaIncrementalAlgorithm::AfterWorkers()
		{
			static bool first = true;

			// replacement
			_population->GetConfiguration().Replacement().GetOperation()( *_population, _population->GetConfiguration().Replacement().GetParameters(), *_buffer );

			// update population
			_population->EndOfGeneration();

			// rais "update statistics" event
			_observers.StatisticUpdate( _population->GetStatistics(), *this );

			// get best chromosome
			int i;
			_population->GetBestChromosomes( &i, 0, 1 );
			GaChromosomePtr f = _population->GetAt( i ).GetChromosome();

			// best chromosome changed?
			if( first || ( *f == *_bestChromosome ) != 100 )
			{
				_bestChromosome = f;
				first = false;

				// raise "new best chromosome found" event
				_observers.NewBestChromosome( *_bestChromosome, *this );
			}
		}

	} // SimpleAlgorithms
} // Algorithm

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -