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

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

?? proto.h

?? 遺傳算法工具
?? H
字號(hào):
/*
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 lint
static 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
;


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

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩免费视频一区二区| 国产成人亚洲综合a∨婷婷图片| 欧美日韩视频在线一区二区 | 亚洲一区在线看| 欧美日韩一二区| 欧美日韩在线亚洲一区蜜芽| 欧美亚一区二区| 国产成a人无v码亚洲福利| 亚洲精品你懂的| 精品福利一二区| 一本大道综合伊人精品热热| 日韩—二三区免费观看av| 国产欧美日韩精品一区| 在线观看欧美精品| 国产成人啪免费观看软件| 国产成人在线网站| 成人av电影在线观看| 韩国精品主播一区二区在线观看| 亚洲欧美日韩国产中文在线| 日韩免费一区二区三区在线播放| 欧美成人福利视频| 欧美男同性恋视频网站| 色欧美日韩亚洲| 欧美日韩大陆一区二区| 日韩免费观看高清完整版| 久久伊人蜜桃av一区二区| 欧美日本在线播放| 精品久久久久久最新网址| 国产欧美日韩精品一区| 亚洲美女电影在线| 人人精品人人爱| 日韩二区三区四区| 国产精品77777| 韩国av一区二区三区| 成人免费看黄yyy456| 国产成人午夜精品影院观看视频| av欧美精品.com| 国产成人精品三级麻豆| 色婷婷综合久久久中文字幕| 91精品国产一区二区人妖| 欧美亚洲精品一区| 欧美成人激情免费网| 中文字幕综合网| 亚洲国产精品成人综合| 久久久三级国产网站| 久久中文娱乐网| 亚洲精品亚洲人成人网在线播放| 丝袜脚交一区二区| 亚洲成人动漫一区| 亚洲一级片在线观看| 精品一区二区免费看| 麻豆免费看一区二区三区| 日韩不卡一区二区三区| 成人av在线播放网址| 欧美日韩三级一区二区| 中文一区一区三区高中清不卡| 亚洲小说欧美激情另类| 日韩国产精品久久久| 懂色av中文一区二区三区| 欧美日韩大陆一区二区| 国产精品久久一卡二卡| 国产精品视频看| 亚洲激情欧美激情| 国产精品夜夜嗨| 91精品国产综合久久精品| 亚洲欧美日韩人成在线播放| 国产麻豆视频精品| 波多野结衣亚洲| 日韩视频一区二区三区在线播放 | 欧美一区午夜精品| 中文字幕中文字幕中文字幕亚洲无线 | 亚洲精品第1页| 国产成人在线网站| 欧美v日韩v国产v| 日韩激情av在线| 色婷婷综合久久久久中文一区二区 | 欧美性色黄大片手机版| 欧美国产日韩一二三区| 久久99精品久久久久婷婷| 欧美日韩在线播| 亚洲裸体在线观看| 不卡一区二区三区四区| 国产午夜精品一区二区三区视频| 亚洲三级久久久| 成人午夜视频在线| 欧美国产精品v| 国产精品一区二区三区乱码| 日韩一区二区三| 日本不卡一区二区三区| 欧美日韩黄视频| 一区二区三区中文在线观看| 日韩成人精品在线| 欧美性感一类影片在线播放| 中文字幕制服丝袜一区二区三区 | 91在线视频官网| 69p69国产精品| 国产精品人人做人人爽人人添| 久久99久国产精品黄毛片色诱| 欧美另类高清zo欧美| 亚洲国产成人一区二区三区| 国产精品1区二区.| 久久这里只有精品视频网| 精品一区二区成人精品| 日韩欧美一级二级| 黑人巨大精品欧美黑白配亚洲| 日韩一级成人av| 毛片av中文字幕一区二区| 欧美一区二区三区日韩| 毛片一区二区三区| 久久久美女毛片| 成人午夜视频在线观看| 亚洲色大成网站www久久九九| 91蝌蚪porny| 国产午夜精品一区二区三区视频| 国产成人午夜99999| 国产精品久久毛片| 91精彩视频在线| 国产片一区二区三区| 成人一区二区三区视频| 亚洲人精品一区| 欧美日韩国产高清一区| 日韩精品免费视频人成| 精品国产a毛片| 成人激情av网| 自拍偷拍国产亚洲| 欧美剧情电影在线观看完整版免费励志电影 | 中文字幕一区二区三区精华液 | 欧美最新大片在线看| 亚洲电影第三页| 欧美成人一区二区三区| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 国产九色sp调教91| 国产精品国模大尺度视频| 欧洲色大大久久| 蜜臀va亚洲va欧美va天堂| 亚洲国产精品黑人久久久| 色妹子一区二区| 蜜桃精品视频在线观看| 欧美高清在线一区| 欧美日韩国产精选| 国产99久久久精品| 亚洲免费色视频| 日韩三级.com| av亚洲精华国产精华| 无吗不卡中文字幕| 欧美性猛片aaaaaaa做受| 日韩av一区二| 国产精品理论片在线观看| 欧美午夜精品电影| 国产自产v一区二区三区c| 亚洲素人一区二区| 日韩欧美电影一区| 91丨porny丨蝌蚪视频| 日韩精品每日更新| 亚洲欧洲精品一区二区三区不卡| 在线观看视频一区| 国产盗摄精品一区二区三区在线| 一区二区高清免费观看影视大全 | 一区二区三区四区在线| 欧美va亚洲va在线观看蝴蝶网| 99久久精品99国产精品| 精品午夜一区二区三区在线观看| 综合激情成人伊人| 亚洲精品一线二线三线无人区| 91亚洲男人天堂| 国产一二三精品| 亚洲va天堂va国产va久| 中文字幕欧美区| 日韩美女视频在线| 在线亚洲免费视频| 成人一级黄色片| 精品系列免费在线观看| 亚洲综合在线电影| 中文字幕一区二区三区蜜月| 2023国产精品自拍| 91精品国产色综合久久不卡电影 | 蜜桃视频在线观看一区二区| 亚洲美腿欧美偷拍| 日本一区二区高清| 亚洲精品在线观看网站| 51精品久久久久久久蜜臀| 色综合色综合色综合| 国产成人免费高清| 国产自产2019最新不卡| 男男gaygay亚洲| 水野朝阳av一区二区三区| 一区二区三区丝袜| 国产精品电影院| 精品国产髙清在线看国产毛片 | 亚洲第一综合色| 一区二区三区四区不卡在线| 国产精品久久久久一区| 久久久www成人免费无遮挡大片| 日韩欧美一区二区不卡| 555夜色666亚洲国产免| 欧美精品乱人伦久久久久久| 欧美日韩成人一区二区| 欧美综合亚洲图片综合区| 色综合久久久久综合体| 色综合久久六月婷婷中文字幕|