欢迎来到天天文库
浏览记录
ID:25159278
大小:48.50 KB
页数:19页
时间:2018-11-18
《一个简单实用的遗传算法c程序》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、.一个简单实用的遗传算法c程序(转载)c++2009-07-2823:09:03阅读418评论0字号:大中小这是一个非常简单的遗传算法源代码,是由DenisCormier(NorthCarolinaStateUniversity)开发的,SitaS.Raghavan(UniversityofNorthCarolinaatCharlotte)修正。代码保证尽可能少,实际上也不必查错。对一特定的应用修正此代码,用户只需改变常数的定义并且定义“评价函数”即可。注意代码的设计是求最大值,其中的目标函数只能取正值;
2、且函数值和个体的适应值之间没有区别。该系统使用比率选择、精华模型、单点杂交和均匀变异。如果用Gaussian变异替换均匀变异,可能得到更好的效果。代码没有任何图形,甚至也没有屏幕输出,主要是保证在平台之间的高可移植性。读者可以从ftp.uncc.edu,目录coe/evol中的文件prog.c中获得。要求输入的文件应该命名为‘gadata.txt’;系统产生的输出文件为‘galog.txt’。输入的文件由几行组成:数目对应于变量数。且每一行提供次序——对应于变量的上下界。如第一行为第一个变量提供上下界,第
3、二行为第二个变量提供上下界,等等。/**************************************************************************//*Thisisasimplegeneticalgorithmimplementationwherethe*//*evaluationfunctiontakespositivevaluesonlyandthe*//*fitnessofanindividualisthesameasthevalueofthe*//*objec
4、tivefunction*//**************************************************************************/#include#include#include/*Changeanyoftheseparameterstomatchyourneeds*/...#definePOPSIZE50/*populationsize*/#defineMAXGENS1000/*max.numbero
5、fgenerations*/#defineNVARS3/*no.ofproblemvariables*/#definePXOVER0.8/*probabilityofcrossover*/#definePMUTATION0.15/*probabilityofmutation*/#defineTRUE1#defineFALSE0intgeneration;/*currentgenerationno.*/intcur_best;/*bestindividual*/FILE*galog;/*anoutputfi
6、le*/structgenotype/*genotype(GT),amemberofthepopulation*/{doublegene[NVARS];/*astringofvariables一个变量字符串*/doublefitness;/*GT'sfitness适应度*/doubleupper[NVARS];/*GT'svariablesupperbound变量的上限*/doublelower[NVARS];/*GT'svariableslowerbound变量的下限*/doublerfitness;/
7、*relativefitness相对适应度*/doublecfitness;/*cumulativefitness累计适应度*/};structgenotypepopulation[POPSIZE+1];/*population*/structgenotypenewpopulation[POPSIZE+1];/*newpopulation;*/.../*replacesthe*//*oldgeneration*//*Declarationofproceduresusedbythisgeneticalgor
8、ithm*/voidinitialize(void);doublerandval(double,double);voidevaluate(void);voidkeep_the_best(void);voidelitist(void);voidselect(void);voidcrossover(void);voidXover(int,int);voidswap(double*,double*);voidmutate(void)
此文档下载收益归作者所有