uofinitializer.h
来自「遗传算法vc++语言版源程序,台湾大学编写。」· C头文件 代码 · 共 21 行
H
21 行
#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 + =
减小字号Ctrl + -
显示快捷键?