模拟退火算法解决路径优化的源代码_第1页
模拟退火算法解决路径优化的源代码_第2页
模拟退火算法解决路径优化的源代码_第3页
模拟退火算法解决路径优化的源代码_第4页
模拟退火算法解决路径优化的源代码_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、ÎÒÓÐ simulated annealing with metropolies(Monte Carlo)×öµÄÒ»¸öÏîÄ¿µÄ´úÂ룬ÄãÒª¿´¿´Ã´£¿void anneal(int nparam, int nstep,

2、 int nstep_per_block, double t0, const double * param_in, double cost_in, double * params_out, double * cost_out) int nblock; int step; int block; int nactive; int rank; int n_accepted = 0; int i, j, n; double cost_current, cost_trial; int * param_index; double * param_current; double * param_trial;

3、 double * Q; double * S; double * u; double * dp; double * A; FILE * fp_log_file; char fnameFILENAME_MAX; double temp = t0; double tempmax = temp; double ebar, evar, emin, eta, specific_heat; double delta; double chi = 0.8; / Annealing schedule double chi_s = 3.0; / Vanderbilt/Louie 'growth fact

4、or' double rm; double root3 = sqrt(3.0); double p = 0.02/sqrt(3.0); /max size of annealing step param_current = new doublenparam; param_trial = new doublenparam; cost_current = cost_in; MPI_Comm_rank(MPI_COMM_WORLD, &rank); sprintf(fname, "a_%4.4d.log", rank); fp_log_file = fopen(f

5、name, "a"); if (fp_log_file = (FILE *) NULL) errorMessage("fopen(log) failedn"); / Work out the number of active parameters, and set up the / index table of the active parameters. / Note that the complete array of parameters (param_trial) must / be used to evaluate the cost funct

6、ion. nactive = 0; for (n = 0; n < nparam; n+) param_currentn = param_inn; param_trialn = param_inn; if (P.is_activen) nactive+; param_index = new intnactive; i = 0; for (n = 0; n < nparam; n+) if (P.is_activen) param_indexi+ = n; / Initialise the step distribution matrix Q_ij Q = new doublenac

7、tive*nactive; S = new doublenactive*nactive; u = new doublenactive; dp = new doublenactive; A = new doublenactive; double * Qtmp; Qtmp = new doublenactive*nactive; for (i = 0; i < nactive; i+) for (j = 0; j < nactive; j+) delta = (i = j); Qi*nactive + j = p*delta*param_currentparam_indexj; / c

8、arry out annealing points nblock = nstep/nstep_per_block; rm = 1.0/(double) nstep_per_block; for (block = 0; block < nblock; block+) / Set the schedule for this block, and initialise blockwise quantities. / We also ensure the step distribution matrix is diagonal. temp = chi*temp; for (i = 0; i &l

9、t; nactive; i+) Ai = 0.0; for (j = 0; j < nactive; j+) Si*nactive + j = 0.0; delta = (i = j); Qi*nactive + j *= delta; ebar = 0.0; evar = 0.0; emin = cost_current; for (i = 0; i < nactive; i+) printf("Step: %d %gn", i, Qi*nactive + i); for (step = 0; step < nstep_per_block; step+)

10、 / Set the random vector u, and compute the step size dp for (i = 0; i < nactive; i+) ui = root3*(r_uniform()*2.0 - 1.0); for (i = 0; i < nactive; i+) dpi = 0.0; for (j = 0; j < nactive; j+) dpi += Qi*nactive + j*uj; for (i = 0; i < nactive; i+) n = param_indexi; param_trialn = param_cur

11、rentn + dpi; if (param_trialn < P.minn) param_trialn = P.minn; if (param_trialn > P.maxn) param_trialn = P.maxn; / calculate new cost function score p_model->setParameters(param_trial); cost_trial = p_costWild->getCost(); cost_trial += p_costLHY->getCost(); cost_trial += p_costTOC1-&g

12、t;getCost(); cost_trial += p_costAPRR->getCost(); / Metropolis delta = cost_trial - cost_current; if (delta < 0.0 | r_uniform() < exp(-delta/temp) for (n = 0; n < nparam; n+) param_currentn = param_trialn; cost_current = cost_trial; +n_accepted; / 'Energy' statistics ebar += cost

13、_current; evar += cost_current*cost_current; if (cost_current < emin) emin = cost_current; / Per time step log fprintf(fp_log_file, "%6d %6d %10.4f %10.4f %10.4f %10.4fn", block, step, temp, cost_current, cost_trial, (float) n_accepted / (float) (block*nstep_per_block + step); / Accumul

14、ate average, measured covariance for (i = 0; i < nactive; i+) Ai += param_currentparam_indexi; for (j = 0; j < nactive; j+) Si*nactive + j += param_currentparam_indexi*param_currentparam_indexj; /* Next step*/ / Set the previous block average and measured covariance for (i = 0; i < nactive;

15、 i+) Ai = rm*Ai; for (i = 0; i < nactive; i+) for (j = 0; j < nactive; j+) Si*nactive + j = rm*Si*nactive + j - Ai*Aj; if (i = j) printf("Average: %d %g %gn", i, Ai, Si*nactive+j); / Set the convarience for the next iteration s = 6 chi_s S / M Si*nactive + j = 6.0*chi_s*rm*Si*nactive

16、 + j; / Reset the step distribution matrix for the next block i = do_cholesky(nactive, S, Q); j = test_cholesky(nactive, S, Q); printf("Cholesky %d %dn", i, j); / Block statistics ebar = rm*ebar; evar = rm*evar; specific_heat = (evar - ebar*ebar) / temp*temp; eta = (ebar - emin)/ebar; fprintf(fp_log_file, "%d %d %f %f %f %f %f %fn", block, nstep_per_block, temp, ebar, evar, emin, specific

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论