simplex.h

来自「最经典的分子对结软件」· C头文件 代码 · 共 26 行

H
26
字号
/*                                                                    *//*                        Copyright UCSF, 1997                        *//*                                                                    *//*General-purpose simplex optimizerDefine simplex_struct and simplex_score() in file containing calling routine.11/96 te*/float simplex_optimize(  void	*simplex,		/* Structure of info passed to scoring fn */  float	*solution,		/* Array of variables to optimize */  int	size,			/* Number of variables */  float	score_converge,		/* Convergence criteria */  int	*iteration,		/* Number of simplex iterations */  int	iteration_max,		/* Maximum number of simplex iterations */  float	(*simplex_score)	/* Scoring function */    (void *, float *),  float *delta			/* Minimizer score improvement (init - fin) */);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?