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

📄 uofinitializer.h

📁 遗传算法vc++语言版源程序,台湾大学编写。
💻 H
字号:
#ifndef _UOFINITIALIZER_
#define _UOFINITIALIZER_

class UOFProblem;
class UOFSolution;

//! Basic Initializer class
/*! Users should overrides this class if you define a new problem*/
class UOFInitializer
{
public:
	//! A function object
	/*!	This is an abstract function, User must override this function to work.
	This function is responsible for the initialization of the parameters.
	*/
	virtual void operator()(void*, UOFProblem*) = 0;
};

#endif

⌨️ 快捷键说明

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