📄 sgaparams.cpp
字号:
// SGAParams.cpp: implementation of the CSGAParams class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//#include "sga.h"
#include "SGAParams.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
extern double cro,muta;
extern int geno,popsize;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CSGAParams::CSGAParams()
{
blCrossover=cro; //取得参数值
blMutation=muta;
MaxGeneration=geno;
PopSize=popsize;
}
CSGAParams::~CSGAParams()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -