📄 uofinitializer.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 + -