📄 classfile.h
字号:
//------------------------------------------------------------
// classfile.h
#ifndef _CLASSFILE
#define _CLASSFILE
class individual
{
public:
unsigned *chrom; /* chromosome string for the individual */
double fitness; /* fitness of the individual */
int xsite; /* crossover site at mating */
int parent[2]; /* who the parents of offspring were */
int *utility; /* utility field can be used as pointer to a */
/* dynamically allocated, application-specific data structure */
int generation; /* generation which produced it */
public:
individual();
virtual ~individual();
};
class bestever
{
public:
unsigned *chrom; // chromosome string for the best-ever individual
double fitness; // fitness of the best-ever individual
int generation; // generation which produced it
public:
bestever();
virtual ~bestever();
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -