fairsacontrol.h

来自「随机需求VRP(VRPSD)」· C头文件 代码 · 共 38 行

H
38
字号
#ifndef FAIRSACONTROL_H
#define FAIRSACONTROL_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 fairSAControl:public Control {
 public:
  fairSAControl( int a, char** b ):Control(a,b){}; 
  fairSAControl( void ):Control() {};
  ~fairSAControl() {};
  bool setSAOrOptParameters();
  float rateTempLength;
  float initTempFactor;
  float alfa;
  float idle_length_reheating;

};

#endif




⌨️ 快捷键说明

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