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

📄 ind.h

📁 GENETIC ALGORITHM FOR NEURAL NETWORKS ON TRANSPUTERS (Source code and Reference)
💻 H
字号:
/* Declarations of individual-specific functions */#ifndef IND_H#define IND_H	1#include "defs.h"int ptrain;/* Genetic */char *IndOptStr();char *IndUsage();char IndParamStr[256]; int CrBits;	/* length of one chromosome in bits */int CrBytes;	/* length of one chromosome in bytes */int CrWords;	/* length of one chromosome in words */int OffsTrain;		/* Offset of error estimate */int NoTrain;		/* No. of patterns of err. estim. */float Estimate;		/* initial information ratio */int handleIndOpt(char opt,char* arg);int initInd();int GenCalcs;errtyp calcerr(ind x);void printind(ind x);/* Backpropagation */char *NetOptStr();char *NetUsage();char NetParamStr[256]; int Nin;	/* no. of inputs */int Nhid; 	/* no. of hidden units */int Nout; 	/* no. of outputs */float **TrainIn;	/* Training Set Input */float **TrainOut;	/* Training Set Output */int Ntrain;		/* no. of patterns */int Nback;	/* no. of backprop. steps for combined moethod */int BackCalcs;int handleNetOpt(char opt,char* arg);int initNet();#endif

⌨️ 快捷键说明

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