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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? proto.h

?? 一個完整的C語言遺傳程序包
?? H
字號:
/*SGPC: Simple Genetic Programming in C(c) 1993 by Walter Alden Tackett and Aviram Carmi  This code and documentation is copyrighted and is not in the public domain. All rights reserved.   - This notice may not be removed or altered.  - You may not try to make money by distributing the package or by using the   process that the code creates.  - You may not distribute modified versions without clearly documenting your   changes and notifying the principal author.  - The origin of this software must not be misrepresented, either by   explicit claim or by omission.  Since few users ever read sources,   credits must appear in the documentation.  - Altered versions must be plainly marked as such, and must not be   misrepresented as being the original software.  Since few users ever read   sources, credits must appear in the documentation.  - The authors are not responsible for the consequences of use of this    software, no matter how awful, even if they arise from flaws in it. If you make changes to the code, or have suggestions for changes,let us know!  (gpc@ipld01.hac.com)*/#ifndef _PROTO_H_#define _PROTO_H_#ifndef lintstatic char proto_h_rcsid[]="$Id: proto.h,v 2.16 1993/04/29 20:39:23 gpc-avc Exp gpc-avc $";#endif/* * * $Log: proto.h,v $ * Revision 2.16  1993/04/29  20:39:23  gpc-avc * Added checks for NaN and infinity for results of eval * * Revision 2.15  1993/04/22  07:39:12  gpc-avc * Removed old log messages * * Revision 2.14  1993/04/15  09:14:39  gpc-avc * Added bsd_qsort() * *  */#if __STDC__ || defined(__cplusplus)#define P_(s) s#include <stddef.h>#else#define P_(s) ()#endif/* gpc.c */int main P_((  int	argc,  char	**argv,  char	**envp  ));void startup P_((  int		argc,  char		**argv,  int		*numpops,  int 		*numgens,  int		*demes,  int		*demerows,  int		*demecols,	         int 		*start_gen,  FILE		**ckpt_file,  pop_struct 	**pop,  pop_struct    ****grid  ));void run_gp_system P_((  int		numpops,  int  		numgens,  int 		start_gen,  pop_struct 	*pop,  int		demes,  pop_struct	***grid,  int		demerows,  int		demecols  ));/* treeio.c */int read_terminal_set_values P_((  pop_struct *pop,  int p,  FILE *f  ));void load_terminal_set_values P_((  pop_struct *pop,  int p,  float *v  ));tree *read_tree P_((  pop_struct *pop,  int p,  FILE *f  ));void write_tree P_((  pop_struct *pop,  tree *t,  char *format,  FILE *f  ));void pprint_tree P_((  pop_struct *pop,  tree *t,  char *format,  FILE *f,  int level  ));int lookup_function_name P_((  pop_struct *pop,  int p,  char *buf  ));int lookup_terminal_name P_((  pop_struct *pop,  int p,  char *buf  ));void get_next_token P_((  char *buf,  FILE *f  ));void blanks P_((  int n,  FILE *f  ));/* treegen.c */tree *create_random_tree P_((  pop_struct *pop,  int p,  int max_depth,  int root_p,  int full_p  ));/* treeops.c */tree *copy_tree P_((  tree *t  ));void free_tree P_((  tree *t  ));tree *create_tree_node P_((  int pop,  int nodetype,  int id  ));void init_function P_((  tree *t  ));void init_terminal P_((  tree *t  ));tree *copy_function P_((  tree *t  ));tree *copy_terminal P_((  tree *t  ));void free_function P_((  tree *t  ));void free_terminal P_((  tree *t  ));/* selection.c */tree *find_tree P_((  pop_struct 	*pop,  int 		p,  int 		demes,  int 		nrows,  int 		ncols,  int		*worst,  int		*best  ));tree *find_tree_using_demes P_((  pop_struct 	*pop,  int 		p,  int 		nrows,  int 		ncols,  int		*worst,  int		*best  ));float random_float_with_overselect P_((  pop_struct *pop,  int p  ));tree *find_tree_using_tournament_2 P_((  pop_struct *pop,  int p  ));tree *find_tree_using_tournament P_((  pop_struct *pop,  int 	p,  int	*worst,  int	*best  ));tree *find_tree_using_fitnessprop P_((  pop_struct *pop,  int p,  float thresh  ));int cannonical_select P_((  pop_struct 	*pop,  int 		p,  int 		nrows,  int 		ncols  ));/* crossover.c */int count_crossover_pts P_((  tree *t  ));void crossover_at_any_pt P_((  pop_struct *pop,  tree *p1,  tree *p2,  tree **o1,  tree **o2  ));void crossover_at_func_pt P_((  pop_struct *pop,  tree *p1,  tree *p2,  tree **o1,  tree **o2  ));void validate_crossover P_((  pop_struct *pop,  tree *p1,  tree *p2,  tree **o1,  tree **o2  ));int depth_of_tree P_((  tree *t  ));int count_crossover_pts P_((  tree *t  ));int count_function_pts P_((  tree *t  ));tree *get_subtree P_((  tree *t,  int n  ));tree *gs P_((  tree *t,  int *n  ));tree *get_function_subtree P_((  tree *t,  int n  ));tree *gfs P_((  tree *t,  int *n  ));tree **pointer_to_subtree P_((  tree **pointer,  tree *subt  ));/* populations.c */void setup_deme_grid P_((  int 		numpops,  int		demerows,  int		demecols,	         pop_struct 	*pop,  pop_struct    ***grid  ));void allocate_populations P_((  int numpops,  pop_struct *pop  ));void initialize_populations P_((  int numpops,  pop_struct *pop  ));void breed_new_population P_((  pop_struct *pop,  int p,  int demes,  int nrows,  int ncols,  int steady_state			        ));void free_population P_((  pop_struct *pop,  int p  ));void load_new_population P_((  pop_struct *pop,  int p  ));/* generations.c */void generations P_((  int		numpops,  int		numgens,  int		start_gen,  pop_struct	*pop,  int		demes,  pop_struct	***grid,  int		demerows,  int		demecols  ));void dump_population P_((  pop_struct *pop,  int p  ));void zero_fitness_of_populations P_((  int	     numpops,  pop_struct *pop,  int	     p  ));void sort_population_by_fitness P_((  pop_struct *pop,  int p  ));void add_parsimony_to_fitness P_((  pop_struct *pop,  int p  ));void normalize_fitness_of_population P_((  pop_struct *pop,  int p  ));void report_on_generation P_((  int g,  pop_struct *pop,  int p  ));void report_on_run P_((  int	     numpops,  pop_struct *pop  ));/* mutation.c */tree *mutate P_((  pop_struct 	*pop,  tree 		*t  ));/* eval.c */GENERIC eval P_((  tree *t  ));GENERIC evaluate_tree P_((  tree *t  ));/* getparams.c */void getparams P_((  int		argc,  char		**argv,  int 		*numpops,  int		*numgens,  int		*demes,  int		*demerows,  int		*demecols,	         int 		*start_gen,  FILE		**ckpt_file,  pop_struct 	**pop,  pop_struct    ****grid  ));void defaultparams P_((  pop_struct *pop,  int i  ));void readparams P_((  pop_struct *pop,  int i,  FILE *f  ));void writeparams P_((  pop_struct *pop,  int i,  FILE *f  ));void checkpoint P_((  int           numpops,  int           numgens,  int           demes,  int           demerows,  int           demecols,  pop_struct 	*pop,  int		g  ));void recover_params P_((  FILE		*cf,  int           *numpops,  int           *numgens,  int           *demes,  int           *demerows,  int           *demecols,  pop_struct	**pop,  pop_struct    ****grid,  int		*g  ));/* fitness.c */void evaluate_fitness_of_populations P_((  int numpops,  int numgens,  pop_struct *pop,  int p  ));float evaluate_fitness_of_individual P_((     pop_struct	*pop,     int	p,     tree	*t,     int	i     ));float validate_fitness_of_tree P_((  int numpops,  int numgens,  pop_struct *pop,  int	p,  tree *t  ));int terminate_early P_((  int numpops,  int numgens,  pop_struct *pop  ));void define_fitness_cases P_((  int numpops,  int numgens,  pop_struct *pop  ));/* setup.c */void make_function_table P_((  int numpops,  pop_struct *pop  ));void make_terminal_table P_((  int numpops,  pop_struct *pop  ));#include "random.h"#ifdef ANSI_FUNC/* system library routines */VOID setbuffer P_((  FILE *stream,  char *buf,  int  size  ));int printf P_((  const char *format,  ...  ));int fprintf P_((  FILE *stream,  const char *format,  ...  ));int fscanf P_((  FILE *stream,  const char *format,  ...  ));int scanf P_((  const char *format,  ...  ));int sscanf P_((  char *s,  const char *format,  ...  ));int getc P_((  FILE *stream  ));int ungetc P_((  int c,  FILE *stream  ));int fclose P_((  FILE *stream  ));FILE *fopen P_((  const char *filename,  const char *mode  ));VOID perror P_((  const char *s  ));int strcasecmp P_((  const char *s1,  const char *s2  ));int isspace P_((  int c  ));void *malloc P_((  size_t size  ));int bsd_qsort P_((  const void *base,  size_t nmemb,  size_t size,  int (*compar) P_((         const void *,         const void *         ))   ));#endif#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
热久久国产精品| 国产另类ts人妖一区二区| 在线精品视频免费观看| 麻豆传媒一区二区三区| 一区免费观看视频| 精品理论电影在线| 色欧美乱欧美15图片| 9i在线看片成人免费| 91亚洲午夜精品久久久久久| 亚洲日本丝袜连裤袜办公室| 欧美顶级少妇做爰| 国产寡妇亲子伦一区二区| 亚洲一区二区欧美日韩| 国产精品久久久久天堂| 欧美不卡一区二区三区四区| 欧美精品一二三| 在线看不卡av| 欧美日韩免费视频| 欧美中文字幕不卡| 在线一区二区视频| 99国产精品久| 国产一区在线观看视频| 日本网站在线观看一区二区三区 | 三级影片在线观看欧美日韩一区二区 | 欧美日韩精品综合在线| 95精品视频在线| 91美女福利视频| 制服视频三区第一页精品| 91精品国产一区二区人妖| 日韩一区二区电影在线| 精品噜噜噜噜久久久久久久久试看 | 91亚洲男人天堂| 91色婷婷久久久久合中文| 91成人网在线| 国产一区视频导航| 成人一区在线观看| 91丨九色porny丨蝌蚪| 欧美日本免费一区二区三区| 精品少妇一区二区三区视频免付费| 国产三级久久久| 亚洲国产精品一区二区www| 久久精品72免费观看| 91视频在线观看免费| 7777精品伊人久久久大香线蕉| 久久综合av免费| 日韩中文字幕91| 91日韩在线专区| xfplay精品久久| 天天影视涩香欲综合网| 色婷婷激情一区二区三区| 久久免费视频色| 日韩av在线发布| 欧美色爱综合网| 亚洲精品国产精华液| 国产精品一区二区黑丝| 欧美一区二区福利在线| 日韩高清不卡一区二区三区| av激情成人网| 亚洲欧美综合色| 91免费看片在线观看| 国产精品美女久久久久久久久久久 | 国产在线视频一区二区三区| 日韩午夜电影av| 日本在线不卡视频| 日韩色在线观看| 久久99久久精品| 国产欧美视频一区二区三区| 国内成人免费视频| 亚洲欧洲在线观看av| 国模无码大尺度一区二区三区| 欧洲一区二区av| 久久99精品久久久久久| 色狠狠一区二区三区香蕉| 亚洲精品在线电影| 日韩中文字幕一区二区三区| 99视频国产精品| 狠狠狠色丁香婷婷综合激情 | 色综合中文字幕国产 | 欧美午夜精品久久久久久超碰| 奇米综合一区二区三区精品视频 | 成人精品国产免费网站| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 欧美丰满嫩嫩电影| 国产成人午夜视频| 国产精品超碰97尤物18| 欧洲一区在线观看| 激情五月婷婷综合| 亚洲一区二区中文在线| 51午夜精品国产| 不卡视频一二三| 蜜桃一区二区三区四区| 国产精品私人自拍| 久久免费午夜影院| 91麻豆精品国产91久久久久久久久 | 亚洲欧美激情小说另类| 日韩一卡二卡三卡四卡| av在线不卡网| 久草精品在线观看| 亚洲成a人v欧美综合天堂| 久久女同互慰一区二区三区| 日韩欧美区一区二| 欧美午夜不卡在线观看免费| voyeur盗摄精品| 国产精品系列在线观看| 久久电影网电视剧免费观看| 亚洲国产精品欧美一二99| 国产精品久久久久久久久快鸭| 欧美一区二区视频观看视频| 欧美日韩国产在线播放网站| 91日韩精品一区| 波多野结衣中文一区| 成人午夜激情片| 国产风韵犹存在线视精品| 久久电影网电视剧免费观看| 日本成人在线不卡视频| 国产精品综合网| 欧美在线观看18| 精品国产一区二区亚洲人成毛片| 国产欧美一区视频| 中文字幕一区二区三区蜜月| 亚洲免费成人av| 日韩精品91亚洲二区在线观看 | 一区二区三区精品久久久| 免费人成精品欧美精品| 国产大片一区二区| 日韩一级大片在线| 亚洲女人小视频在线观看| 欧美日韩国产欧美日美国产精品| 日本电影欧美片| 日韩欧美一级精品久久| 国产精品免费久久| 久久国产婷婷国产香蕉| 91行情网站电视在线观看高清版| 欧美成人一区二区三区| 午夜欧美一区二区三区在线播放| 99久久精品国产观看| 精品免费视频.| 日韩av成人高清| 宅男噜噜噜66一区二区66| 亚洲欧美日韩在线| 国产一区欧美日韩| 欧美人与z0zoxxxx视频| 日本一区二区在线不卡| 久久97超碰国产精品超碰| 欧美日韩在线亚洲一区蜜芽| 一区在线播放视频| 色综合久久中文综合久久牛| 亚洲欧美一区二区在线观看| av动漫一区二区| 亚洲精品一二三区| 欧美吻胸吃奶大尺度电影| 亚洲国产综合色| 欧美日韩一区小说| 精品成人在线观看| 久久99精品一区二区三区三区| 717成人午夜免费福利电影| 男女性色大片免费观看一区二区| 久久蜜桃一区二区| 另类小说视频一区二区| 在线免费精品视频| 亚洲一区二区在线免费观看视频| 色吧成人激情小说| 日本亚洲免费观看| 国产精品女同一区二区三区| 不卡一区二区三区四区| 丝袜美腿亚洲一区| 26uuu色噜噜精品一区二区| 成人国产电影网| 午夜不卡av免费| 亚洲人xxxx| 国产日本一区二区| 精品日韩成人av| 欧美日韩免费在线视频| 91视频一区二区三区| 亚洲人成精品久久久久| 国产欧美日韩不卡| 欧美乱妇15p| 在线观看视频一区| 东方欧美亚洲色图在线| 美女精品一区二区| 亚洲欧美日韩在线播放| 国产亚洲精品免费| 欧美精品一区二区三区久久久| 欧美三级一区二区| 97精品视频在线观看自产线路二| 国产一区二区三区四区五区入口 | 欧美色网一区二区| 精品一区二区免费视频| 加勒比av一区二区| 日日摸夜夜添夜夜添国产精品 | 色综合久久久网| 色激情天天射综合网| 99re热这里只有精品视频| 粉嫩在线一区二区三区视频| 久久99精品久久只有精品| 国产成人亚洲综合色影视| 成年人国产精品| 91美女在线看| 日韩亚洲欧美高清| 欧美激情一区二区三区全黄|