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

📄 stopcriterias.cpp

📁 遗传算法的四个源程序和源代码
💻 CPP
字号:

/*! \file StopCriterias.cpp
    \brief This file implements stop criteria classes.
*/

/*
 * 
 * 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 "FPEqual.h"
#include "Algorithm.h"
#include "StopCriterias.h"

namespace Algorithm
{
	namespace StopCriterias
	{

		// Compares the state of the algorithm against given stopping condition and given paremeters,
		// and returns TRUE if that condition is reached.
		bool GaGenerationCriteria::Evaluate(const GaAlgorithm& algorithm,
			const GaStopCriteriaParams& parameters) const
		{
			return algorithm.GetAlgorithmStatistics().GetCurrentGeneration() >= ( (const GaGenerationCriteriaParams&) parameters ).GetNumberOfGeneration();
		}

		// Compares the state of the algorithm against given stopping condition and given paremeters,
		// and returns TRUE if that condition is reached.
		bool GaFitnessCriteria::Evaluate(const GaAlgorithm& algorithm,
			const GaStopCriteriaParams& parameters) const
		{
			const GaFitnessCriteriaParams& p = (const GaFitnessCriteriaParams&)parameters;
			float current = algorithm.GetAlgorithmStatistics().GetValue( p.GetValueType() ).GetCurrent();

			bool res = false;

			// fitness limit reached
			if( p.GetComparison() & GFC_EQUALS_TO )
				res |= FloatsEqual( current, p.GetFitnessLimit() );
			if( p.GetComparison() & GFC_LESS_THEN )
				res |= current < p.GetFitnessLimit();
			if( p.GetComparison() & GFC_MORE_THEN )
				res |= current > p.GetFitnessLimit();

			return res;
		}

		// Compares the state of the algorithm against given stopping condition and given paremeters,
		// and returns TRUE if that condition is reached.
		bool GaFitnessProgressCriteria::Evaluate(const GaAlgorithm& algorithm,
			const GaStopCriteriaParams& parameters) const
		{
			const GaFitnessProgressCriteriaParams& p = (const GaFitnessProgressCriteriaParams&)parameters;

			float previous = algorithm.GetAlgorithmStatistics().GetValue( p.GetValueType() ).GetPrevious();
			float current = algorithm.GetAlgorithmStatistics().GetValue( p.GetValueType() ).GetCurrent();

			float progress;
			 
			progress = fabs( current - previous );
			if( p.GetAbsolute() )
				progress = progress / previous * 100;

			bool res = false;

			// limit of progress reached
			if( p.GetComparison() & GFC_EQUALS_TO )
				res |= FloatsEqual( progress, p.GetRequiredProgress() );
			if( p.GetComparison() & GFC_LESS_THEN )
				res |= progress < p.GetRequiredProgress();
			if( p.GetComparison() & GFC_MORE_THEN )
				res |= progress > p.GetRequiredProgress();

			if( res )
			{
				// increas
				int c = p.GetCurrent();
				p.SetCurrent( c + 1 );

				// history depth reached?
				if( c < p.GetHistoryDepth() )
					res = false;
				else
					p.SetCurrent( 0 );
			}
			else
				// restart history
				p.SetCurrent( 0 );

			return res;
		}

	}// StopCriterias
} // Algorithm

⌨️ 快捷键说明

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