欢迎来到天天文库
浏览记录
ID:35935567
大小:122.04 KB
页数:19页
时间:2019-04-25
《一个简单实用地遗传算法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*//*objectivefunction*//*
4、*************************************************************************/#include#include文档实用标准文案#include/*Changeanyoftheseparameterstomatchyourneeds*/#definePOPSIZE50/*populationsize*/#defineMAXGENS1000/*max.numberofgenerations*/#def
5、ineNVARS3/*no.ofproblemvariables*/#definePXOVER0.8/*probabilityofcrossover*/#definePMUTATION0.15/*probabilityofmutation*/#defineTRUE1#defineFALSE0intgeneration;/*currentgenerationno.*/intcur_best;/*bestindividual*/FILE*galog;/*anoutputfile*/structgenotype/*genot
6、ype(GT),amemberofthepopulation*/{doublegene[NVARS];/*astringofvariables一个变量字符串*/doublefitness;/*GT'sfitness适应度*/doubleupper[NVARS];/*GT'svariablesupperbound变量的上限*/doublelower[NVARS];/*GT'svariableslowerbound变量的下限*/doublerfitness;/*relativefitness相对适应度*/doublecfi
7、tness;/*cumulativefitness累计适应度*/};文档实用标准文案structgenotypepopulation[POPSIZE+1];/*population*/structgenotypenewpopulation[POPSIZE+1];/*newpopulation;*//*replacesthe*//*oldgeneration*//*Declarationofproceduresusedbythisgeneticalgorithm*/voidinitialize(void);doubler
8、andval(double,double);voidevaluate(void);voidkeep_the_best(void);voidelitist(void);voidselect(void);voidcrossover(void);voidXover(int,int);voidswap(double*,double*);v
此文档下载收益归作者所有