📄 flimflamsacontrol.h
字号:
#ifndef FLIMFLAMSACONTROL_H
#define FLIMFLAMSACONTROL_H
/*
This is VRPSD's control class. All metaheuristics
implementations should use it for their command line options and
output.
*/
#include <string>
#include <map>
#include <iostream>
#include <fstream>
#include "Control.h"
using namespace std;
#include "Timer.h"
class flimflamControl:public Control {
public:
flimflamControl( int a, char** b ):Control(a,b){};
flimflamControl( void ):Control() {};
~flimflamControl() {};
bool setSAOrOptParameters();
float rateTempLength;
float initTempFactor;
float alfa;
float idle_length_reheating;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -