⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classfile.h

📁 一个遗传算法(GA)的实现。command line 的结构。输入输出格式请见命令行
💻 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 + -