亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? chrome.cpp

?? 一個GP遺傳編程的源程序
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
// Copyright Andy Singleton, 1993,1994
// This code is released for non-commercial use only
// For questions or upgrades contact:
// Andy Singleton, Creation Mechanics Inc.
// PO Box 248, Peterborough, NH 03458
// Internet: p00396@psilink.com
// Compuserve 73313,757
// Phone: (603) 563-7757

// GPQUICK
// C++ prefix stack implementation
// Divides GP system into classes:
//    Chrome-Function  - representation of the genetic program
//    Pop - Runs the GA
//    Problem - fitness and primitive functions


#include "pch.h"
#include "chrome.h"

// Global variables
char scratch[100];

#ifdef FASTEVAL
	// Global evaluation variables.  Eliminates parameter passing
	// If you can get IpGlobal into a register, you will run near the speed
	// limit for S-expression evaluation
	Chrome * ChromeGlobal;                  // currently evaluating Chrome
	evalnode ExprGlobal[EXPRLEN];   // expression expanded to evalnodes
	evalnode * IpGlobal;            // Current instruction pointer
#endif


//**************************************************************************
//////////////////////////////////// Utility functions

void NoMoreMem()		// Out of memory exit
{
	cout << "\nOut of Memory.  Aborting Execution.\n";
	exit(1);
}

int min(int value1, int value2)
   {
	  return ( (value1 < value2) ? value1 : value2);
   };
int max(int value1, int value2)
   {
	  return ( (value1 > value2) ? value1 : value2);
   };

// Comment out if included in your implementation (e.g. Borland)
	// upper case string
char* strupr(char* s)
{
	int i=0;
	while (s[i])
		if (s[i]>='a' && s[i]<='z') s[i]=s[i]-32;
    i++;
	return s;
}

	// compare strings without case sensitivity
int strcmpi(char* s1, char* s2)         // only checks equality
{
	int mismatch=0;
	while (*s1 && *s2 && !mismatch)
	{
		if (*s1>='a' && *s1<='z' && *s2<='Z')
			mismatch = *s1-32 != *s2;               
		else if (*s1>='A' && *s1<='Z' && *s2>='a')
		mismatch = *s1+32 !=*s2;

		else
			mismatch = *s1!=*s2;
		s1++;s2++;
	}
	return mismatch || *s1 || *s2;
}


//**************************************************************************
//////////////Function member function (separated for use in a DLL)
char* Function::getprint(Chrome* chrome)
{
	// NUMBER has its own getprint to write the correct number
	// This is fancy footwork for other functions with operands
	// these are written as <name>_<operand number>
	if (varnum) sprintf(scratch,"%s_%-d",name,VARNUM(chrome->expr[chrome->ip]));
	return (varnum? scratch : name);
}



//**************************************************************************
/// Chrome functions ///////////////////////////////////////////

Chrome::Chrome(ChromeParams* p,CSelector* cf,Problem* pr,Function** f,retval* c,BOOL doinit) {
// initialize a expr using the functions in array f

	int depth = p->params[pInitExpr];
	funcbag=cf;
		params = p;
	probl = pr;
	funclist = f;
	constlist = c;
	MaxExpr=params->params[pMaxExpr];
	ExprBytes=MaxExpr*sizeof(node);
	expr=new node[MaxExpr];
    if (expr==NULL) NoMoreMem();		// Out of memory?
	ip=0;
	funccount = params->funccount;          // how many primitives?
	
	birth = 0;
	if (doinit)
	{
		// DO "ramped half and half from 2 to depth"
		if (depth > 0)
		{
						SubInit(1,rnd(depth-1)+1,rnd(2));       // go to some depth less than max, full or half full
		}
		else
			SETNODE(expr[ip],0,0);                                  // stick in a stub constant
	}
		nfitness  = probl->GetFitnessObj();
		// allocates a FitnessValue object;  GetFitnessObj  calls new
}

Chrome* Chrome::Copy()
{
	Chrome* nw=new Chrome(params,funcbag,probl,funclist,constlist,FALSE);
	if (nw==NULL) NoMoreMem();		// Out of memory?
	nw->Dup(this);
	return nw;
}

void Chrome::Dup(Chrome* source)                // make a copy nondestructively
{
	funcbag=source->funcbag;
	params=source->params;
	funclist=source->funclist;
	funccount=source->funccount;
		constlist=source->constlist;
	
		memcpy(expr,source->expr,ExprBytes);
	nfitness->Copy(source->nfitness);
	ip=0;
}

retval Chrome::evalAll() // eval the whole expression anew
{
#ifndef FASTEVAL
	ip=-1;
	return eval();
#else
	
	IP=ExprGlobal;
	//cout<<"FUNC="<< IP->op;
	return (IP->ef)();
#endif
}

void Chrome::SetupEval()
{
#ifdef FASTEVAL
		// expand stack into evalnodes in global eval stack
	int args;
	node* spp=expr;
	evalnode* ip=ExprGlobal;
	args=1;
	while (args > 0)
	{
		SETEVALNODE(ip,spp->op,spp->idx);
		args=args+PARGNUM(spp)-1;
		ip++;
		spp++;
	}
		// set global eval pointers
	ChromeGlobal=this;
#endif
}

void Chrome::SubInit(int argstogo,int depth,int isfull)     // Initialize a subtree half full
{
	int i;
	int maxargs,thisargs;
	maxargs = MaxExpr -(ip+argstogo);       // max number of args to add
	i=funcbag->roulette();

	// terminal required
	if (maxargs == 0 || depth == 0 )
		while (funclist[i]->argnum>0) i=funcbag->roulette();

	// node required
	else if (isfull || ip==0)
		if (maxargs > 5)
			while (funclist[i]->argnum == 0) i=funcbag->roulette();
		else                    // not enough room.  Take what you can get.
			while (funclist[i]->argnum>maxargs) i=funcbag->roulette();

	// terminal allowed 50% of the time
	else
		if (rnd(2))             // terminal required
			while (funclist[i]->argnum>0) i=funcbag->roulette();
		else            // node required
			if (maxargs > 5)
				while (funclist[i]->argnum == 0) i=funcbag->roulette();
			else                    // not enough room.  Take what you can get.
				while (funclist[i]->argnum>maxargs) i=funcbag->roulette();

	SETNODE(expr[ip],i,rnd(funclist[i]->varnum));
	ip++;
	thisargs=funclist[i]->argnum;
	argstogo += funclist[i]->argnum-1;

	for (i=0;i<thisargs;i++)
	{
		SubInit(argstogo,depth-1,isfull);
		argstogo--;
	}
}

void Chrome::Traverse() {             // skip the next expression
	int args = 1;
	while (args > 0)
	{
				 args=args+ARGNUM()-1;
				 ip++;
	}
}


void Chrome::TraverseGlobal() {             // skip the next expression
	int args = 1;
	while (args > 0)
	{
				 args=args+PARGNUM(IP)-1;
				 IP++;
	}
}

				// Write the next subexpression to a stream
				// pretty flag controls parentheses, indenting
				// PRETTY_NONE = no indenting, just a stream, with parens
				// PRETTY_NOPARENS = indented, one function per line, no parens
				// PRETTY_PARENS = indented, one function per line, parens
void Chrome::SubWrite(ostream& ostr,int pretty) {
	int args,i;
	ip++;
	args = ARGNUM();
	if (pretty)                                     // indent?
	{
		ostr<< '\r' << '\n';
		for (i=0;i<depth;i++){
				ostr << " : ";
		}
	}
	else
		ostr << ' ';
	if (args>0)
	{                               // write (FUNC args)
		if (pretty != PRETTY_NOPARENS)
			ostr << '(';
		ostr << funclist[FUNCNUM(expr[ip])]->getprint(this);
		depth++;
		while (args-- > 0) SubWrite(ostr,pretty);
		depth--;
		if (pretty != PRETTY_NOPARENS)
			ostr << ")";
	}
	else {                          // write an atom
		ostr << funclist[FUNCNUM(expr[ip])]->getprint(this);
	}
}

Chrome* Chrome::CrossTree(Chrome* mate)
// Return a new Chrome that is a cross with mate

{
		Chrome* newexpr = Copy();
	int thislen;        // total length of expression
	int thissubptr;     // pointer to subexpression
	int thissublen;
	int matelen;
	int matesubptr;
	int matesublen;
	thislen=SubLen(0);
	matelen=mate->SubLen(0);
	if (rnd(101)>params->params[pUnRestrictWt])
	{
		thissubptr=GetIntNode();
		matesubptr=mate->GetIntNode();
	}
	else
    {
		thissubptr=GetAnyNode();
		matesubptr=mate->GetAnyNode();
	}
	thissublen = SubLen(thissubptr);
	matesublen=mate->SubLen(matesubptr);

	if (thislen+matesublen-thissublen > MaxExpr){      // take smaller side of swap
		memcpy(newexpr->expr,mate->expr,matesubptr*sizeof(node));
		memcpy(&(newexpr->expr[matesubptr]),&(expr[thissubptr]),thissublen*sizeof(node));
		memcpy(&(newexpr->expr[matesubptr+thissublen]),&(mate->expr[matesubptr+matesublen]),(matelen-(matesubptr+matesublen))*sizeof(node));
	}
	else {
		memcpy(newexpr->expr,expr,thissubptr*sizeof(node));
		memcpy(&(newexpr->expr[thissubptr]),&(mate->expr[matesubptr]),matesublen*sizeof(node));
		memcpy(&(newexpr->expr[thissubptr+matesublen]),&(expr[thissubptr+thissublen]),(thislen-(thissubptr+thissublen))*sizeof(node));
	}
	return newexpr;
}

int Chrome::GetAnyNode()                // get a node for crossover
{
	return rnd(SubLen(0));
}

int Chrome::GetIntNode()                // get an internal node for crossover
{
	int rval;
	int l=SubLen(0);
	if (l>2)
	{
		rval=rnd(l);
		while (funclist[FUNCNUM(expr[rval])]->argnum <1)
			rval=rnd(l);
	}
	else
		rval=0;
	return rval;
}

				// Mutate the current Chrome
void Chrome::Mutate()                   // mutate nodes with rate r
{
		int end,i,args;
	int rate=params->params[pMuteRate];
	ip=0;
	Traverse();
	end=ip;
	ip=0;
	while (ip<end)
	{
		if (rnd(1024) < rate)
		{
			args=ARGNUM();
			i=funcbag->roulette();
			while (funclist[i]->argnum!=args) i=funcbag->roulette();
			SETNODE(expr[ip],i,rnd(funclist[i]->varnum));
		}
		ip++;
	}
}


void Chrome::MutateC()                  // jiggle constants with a random walk 
{
	int i,end,newconst;
	int oldconst;
	int radius=8;
	ip= 0;
	Traverse();
	end=ip;
	ip=0;
	while (ip<end)
	{
				if (FUNCNUM(expr[ip])==0)
		{
			oldconst=VARNUM(expr[ip]);
			newconst=oldconst;
			for (i=0;i<radius;i++)
				newconst+=rnd(2);
			newconst-=radius/2;
			newconst=min(CONSTARRAYSIZE-1,max(newconst,0));
			if ((constlist[oldconst]>100 && constlist[newconst]<0) || (constlist[oldconst]<-100 && constlist[newconst]>0))  // overrun?
		newconst=oldconst;
			SETNODE(expr[ip],0,newconst);
		}
	ip++;
    }
}


void Chrome::MutateShrink()             // shrink by promoting a subtree
{
	int tree,treelen,subtree,subtreelen,l;
	node *temp;
	int argnum;
	argnum=0;
	l=SubLen(0);
	if (l>argnum+1)
    {
		// node required
		temp = new node[MaxExpr];
		if (temp==NULL) NoMoreMem();		// Out of memory?
		tree=rnd(l);
		while (funclist[FUNCNUM(expr[tree])]->argnum == 0) tree=rnd(l);

		// now pick a subtree
		treelen=SubLen(tree);
		subtree=tree+rnd(treelen-1)+1;
	subtreelen=SubLen(subtree);

		memcpy(temp,expr,l*sizeof(node));               // save the old expr
		memcpy(expr+tree,temp+subtree,subtreelen*sizeof(node)); // add the subtree
		memcpy(expr+tree+subtreelen,temp+tree+treelen,sizeof(node)*(l-(tree+treelen)));         // add the rest
		delete[] temp;
    }
}

int Chrome::Load(istream& ifile,int issource)
// Load an expression from a stream
// issource should always be TRUE

{
	int x,tempop, tempidx;
	int rval=LOAD_OK;
	node* buf;

	if (!issource)
	{
		for(x=0;x<MaxExpr;x++)
		{
			ifile >> tempop;
			expr[x].op =(unsigned) tempop;
			ifile >> tempidx;
			expr[x].idx=(unsigned) tempidx;
		}
	}
	else            // load a Source file
	{
		ip=0;
		buf=new node[MaxExpr];
		if (buf==NULL) NoMoreMem();		// Out of memory?
		if ((rval=SubLoad(ifile,buf)) == LOAD_OK)
		{
			delete[] expr;
			expr=buf;
		} else
			delete[] buf;
	}
	return rval;
}

#define EATSPACE c=istr.peek();while(isspace(c)||c==':') {istr.get();c=istr.peek();}
#define GETTOK tp=0;c=istr.peek();while(c!=EOF && !isspace(c) && c!=':' && c!='(' && c!=')' &&tp<79) {scratch[tp++]=istr.get(); c=istr.peek();} scratch[tp]='\0'

int Chrome::SubLoad(istream& istr,node* buf)
// load a sub-expression from source format
// Return LOAD_OK or an error value
// text expression is in istr
// nodes go into buf

{
	int rval = LOAD_OK;
	char c;
//      char token[80];
	int tp;
	int func;
	int args;
	int vnum;
	char* s;
	scratch[0]='\0';
	EATSPACE;
	if (istr.peek()==')' || istr.peek()==EOF)
	{
		rval=LOAD_TOOFEW;                       // missing expression body
	}
	else if (ip>=MaxExpr)
	{
		rval=LOAD_TOOLONG;
	}
	else if (istr.peek()=='(')              // Get an expression and the close paren
	{
		istr >> c;
		rval = SubLoad(istr,buf);
		if (rval==LOAD_OK)
	{
			EATSPACE;
			istr >> c;
			if (c!=')')
				rval=LOAD_TOOMANY;
	}
	}
	else                            // Get an expression.  Return if you hit a close paren.
	{
		GETTOK;
		if (strlen(scratch)==0)
			rval=LOAD_TOOFEW;
		else
		{
			if (isdigit(scratch[0]) || scratch[0]=='-')     // it's a number.  Function 0
			{
				func=atoi(scratch);
				if (func>=0-CONSTARRAYSIZE/2 && func<CONSTARRAYSIZE/2)
				{
					SETNODE(buf[ip],0,func+CONSTARRAYSIZE/2);
					ip++;
					rval=LOAD_OK;
				}
				else rval=LOAD_BADCONST;
			}
			else       // look up a function name
			{
				vnum=0;
				if (strchr(scratch,'_')!=NULL)
				{
					// parse it to take off the variable number?
					// This is fancy footwork for functions with operands
					// Except for NUMBER (function 0) these functions are
					// written as <name>_operand
					s=strrchr(scratch,'_');
					if (strchr("0123456789",s[1]))  // it is an underscore followed by numbers

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
香蕉久久一区二区不卡无毒影院| 99久久国产综合色|国产精品| 97国产一区二区| 欧美一区二区精品久久911| 国产精品短视频| 美女性感视频久久| 在线一区二区视频| 久久一区二区三区四区| 午夜精品福利一区二区蜜股av | 中文字幕一区二区三区蜜月| 美美哒免费高清在线观看视频一区二区 | 国产精品一二三四五| 欧美日韩亚洲丝袜制服| 亚洲欧洲国产专区| 国产激情精品久久久第一区二区| 51精品国自产在线| 一区二区欧美视频| 91在线观看视频| 日本一区二区免费在线观看视频| 久久精品国产秦先生| 欧美美女一区二区| 亚洲一区在线视频| 91老师片黄在线观看| 国产精品你懂的在线欣赏| 精品一区二区国语对白| 欧美一级黄色片| 亚洲成年人影院| 欧美综合天天夜夜久久| 亚洲欧美一区二区三区极速播放 | 日av在线不卡| 在线播放91灌醉迷j高跟美女| 洋洋av久久久久久久一区| 91影视在线播放| 亚洲日本欧美天堂| 91丨porny丨中文| 日韩一区有码在线| 91原创在线视频| 亚洲视频一二区| 91在线观看下载| 亚洲欧洲精品一区二区三区| 91在线免费播放| 中文字幕亚洲欧美在线不卡| 成人福利在线看| 国产精品色婷婷| av在线一区二区| 亚洲欧美乱综合| 一本久久综合亚洲鲁鲁五月天| 日韩毛片视频在线看| 91在线观看美女| 夜夜精品视频一区二区| 欧美色图片你懂的| 视频一区二区不卡| 欧美电视剧免费全集观看| 久久99精品视频| 精品一区二区久久久| 精品国产免费人成电影在线观看四季 | 亚洲成人av一区| 91精品国产综合久久婷婷香蕉| 人人狠狠综合久久亚洲| 精品国精品自拍自在线| 国产精品18久久久久久vr| 国产女人18毛片水真多成人如厕 | 亚洲成av人影院| 777亚洲妇女| 韩国在线一区二区| **性色生活片久久毛片| 欧美亚洲高清一区| 日韩高清中文字幕一区| 久久综合久色欧美综合狠狠| 从欧美一区二区三区| 亚洲精品综合在线| 91精品午夜视频| 国产乱妇无码大片在线观看| 国产精品女主播av| 欧美人与禽zozo性伦| 麻豆精品国产传媒mv男同| 国产欧美一区在线| 色噜噜狠狠色综合中国| 日本伊人色综合网| 国产色综合一区| 欧洲色大大久久| 精品一区二区三区免费视频| 国产精品久久久久久久第一福利 | 日本vs亚洲vs韩国一区三区二区| xf在线a精品一区二区视频网站| 成人一级片在线观看| 亚洲香蕉伊在人在线观| 精品福利一二区| 91麻豆国产自产在线观看| 琪琪久久久久日韩精品| 日本一区二区动态图| 欧美视频在线一区| 国产精品1区2区| 亚洲第四色夜色| 日本一区免费视频| 在线综合+亚洲+欧美中文字幕| 成人性生交大片免费看中文| 亚洲成a人v欧美综合天堂| 国产欧美日韩综合精品一区二区| 欧美三级视频在线| 国产+成+人+亚洲欧洲自线| 午夜欧美在线一二页| 中文字幕成人在线观看| 在线播放中文一区| av一区二区三区黑人| 麻豆国产精品视频| 亚洲一区二区三区中文字幕| 久久无码av三级| 欧美日韩黄色影视| a在线欧美一区| 精品一区二区在线免费观看| 亚洲一区二区免费视频| 国产清纯白嫩初高生在线观看91 | 国产喷白浆一区二区三区| 欧美一区二区高清| 亚洲韩国一区二区三区| 国产日韩精品一区二区浪潮av| 欧美日韩精品一区视频| 成人18精品视频| 国内一区二区视频| 日韩精品亚洲一区二区三区免费| 亚洲天堂网中文字| 国产亚洲一区二区在线观看| 欧美老女人在线| 色菇凉天天综合网| 本田岬高潮一区二区三区| 极品少妇一区二区三区精品视频| 亚洲 欧美综合在线网络| 专区另类欧美日韩| 国产精品日韩成人| 久久婷婷综合激情| 欧美一级高清片| 欧美日本国产视频| 欧美色视频在线| 欧洲一区在线观看| 色88888久久久久久影院野外| 成人网在线播放| 国产精品一区二区久久不卡| 久久国产免费看| 日韩精品91亚洲二区在线观看| 亚洲综合一二区| 亚洲人成网站在线| ...xxx性欧美| 亚洲欧美区自拍先锋| 亚洲色欲色欲www在线观看| 国产精品三级av| 国产精品美女视频| 中文欧美字幕免费| 欧美国产综合色视频| 国产日韩欧美综合在线| 国产三级欧美三级| 国产视频一区在线观看 | 在线日韩国产精品| 91捆绑美女网站| 色就色 综合激情| 欧美性猛交xxxx乱大交退制版| 色欧美日韩亚洲| 在线精品视频一区二区三四| 91福利在线免费观看| 欧美中文字幕一区二区三区| 色欧美片视频在线观看在线视频| 在线观看视频一区| 石原莉奈在线亚洲三区| 日日夜夜精品视频天天综合网| 丝袜亚洲另类欧美| 日本不卡中文字幕| 久久66热偷产精品| 国产精品99久久久久久似苏梦涵| 国产精品一区在线| 成人免费毛片嘿嘿连载视频| av成人免费在线| 日本韩国精品在线| 欧美日韩国产三级| 欧美一区二区三区视频免费播放| 欧美一级搡bbbb搡bbbb| 亚洲精品在线电影| 欧美极品少妇xxxxⅹ高跟鞋| 中文字幕一区二区三中文字幕| 一区二区高清在线| 五月天激情综合| 日本欧美一区二区在线观看| 青青草精品视频| 国产精品12区| 97se亚洲国产综合在线| 色婷婷狠狠综合| 777久久久精品| 久久亚洲一区二区三区四区| 国产精品天干天干在观线| 亚洲狠狠丁香婷婷综合久久久| 午夜视频在线观看一区二区三区| 美女视频第一区二区三区免费观看网站| 精品亚洲成a人| aaa欧美日韩| 欧美精品在欧美一区二区少妇| 精品少妇一区二区| 中文字幕一区二区在线观看| 偷拍一区二区三区四区| 国产一区二区三区视频在线播放| 99国产精品久久久久| 欧美二区在线观看|