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

📄 spea.h

📁 多目标进化算法源代码
💻 H
字号:
/*******************************************************************************	SPEA.h		last change: 01/25/1999		version: 0.0.0		design:	Eckart Zitzler			Paul E. Sevinc		implementation:	Paul E. Sevinc		(c) 1998-1999:	Computer Engineering and Networks Laboratory				Swiss Federal Institute of Technology Zurich				description:			See also MOEA.h			SPEA is a concrete subclass of MOEA.			SPEA features fitness assignment and selection of			the Strength Pareto Evolutionary Algorithm.*******************************************************************************/#ifndef SPEA_H#define SPEA_H#include <cstddef>#include "MOEA.h"#include "Population.h"#include "RandomNr.h"#include "TIKEAFExceptions.h"#include "VecPopulation.h"using std::size_t;class SPEA : public MOEA{	private:		const	size_t		maxParetoSize;			VecPopulation	paretoSet;	public:			// define the mating-pool size and			// the maximum Pareto-set size					SPEA( RandomNr&, size_t, size_t );								void		select( Population*, Population* )						throw ( NilException );						void		cloneParetoPoints( Population* )						throw ( NilException );};#endif

⌨️ 快捷键说明

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