genetic.h

来自「uploading the file , the system will del」· C头文件 代码 · 共 20 行

H
20
字号

#ifndef __GENETIC_GIBSON__
#define __GENETIC_GIBSON__

#include "placement.h"

// function declarations
Placement *
     Genetic(Netlist * nl, /* Constraints */
			 double Rc, /* Crossover Rate*/ 
			 double Rm, /* Mutation Rate */
			 double Ri, /* Inversion Rate */
			 int Np, /* Population Size */
			 int Ng, /* Number of Generatios */
			 FILE * outfile, /* Where to dump */
			 int verbosity /* How much to dump */) ; 

#endif

⌨️ 快捷键说明

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