![模擬退火算法解決路徑優(yōu)化的源代碼_第1頁](http://file3.renrendoc.com/fileroot_temp3/2022-2/5/8e44c646-0809-448d-879d-9cc24ff375b0/8e44c646-0809-448d-879d-9cc24ff375b01.gif)
![模擬退火算法解決路徑優(yōu)化的源代碼_第2頁](http://file3.renrendoc.com/fileroot_temp3/2022-2/5/8e44c646-0809-448d-879d-9cc24ff375b0/8e44c646-0809-448d-879d-9cc24ff375b02.gif)
![模擬退火算法解決路徑優(yōu)化的源代碼_第3頁](http://file3.renrendoc.com/fileroot_temp3/2022-2/5/8e44c646-0809-448d-879d-9cc24ff375b0/8e44c646-0809-448d-879d-9cc24ff375b03.gif)
![模擬退火算法解決路徑優(yōu)化的源代碼_第4頁](http://file3.renrendoc.com/fileroot_temp3/2022-2/5/8e44c646-0809-448d-879d-9cc24ff375b0/8e44c646-0809-448d-879d-9cc24ff375b04.gif)
![模擬退火算法解決路徑優(yōu)化的源代碼_第5頁](http://file3.renrendoc.com/fileroot_temp3/2022-2/5/8e44c646-0809-448d-879d-9cc24ff375b0/8e44c646-0809-448d-879d-9cc24ff375b05.gif)
下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
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. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 現(xiàn)代企業(yè)如何通過公關(guān)活動吸引目標客戶
- 理論與實踐在文化傳承中尋求創(chuàng)新發(fā)展
- 國慶節(jié)鮮奶活動方案策劃
- Module5 Unit1 He is playing the suona,but the phone rings(說課稿)-2023-2024學(xué)年外研版(三起)英語六年級下冊
- 8《上課了》說課稿-2023-2024學(xué)年道德與法治一年級上冊統(tǒng)編版001
- 2023九年級數(shù)學(xué)上冊 第23章 圖形的相似23.4 中位線說課稿 (新版)華東師大版
- 9 知法守法 依法維權(quán) 說課稿 -2023-2024學(xué)年道德與法治六年級上冊(統(tǒng)編版)
- 2024年四年級英語上冊 Module 4 The world around us Unit 11 Shapes說課稿 牛津滬教版(三起)
- Unit8 I can do this for you 第三課時(說課稿)-2024-2025學(xué)年譯林版(三起)(2024)英語三年級上冊
- 3 光的傳播會遇到阻礙嗎 說課稿-2024-2025學(xué)年科學(xué)五年級上冊教科版
- 城市基礎(chǔ)設(shè)施修繕工程的重點與應(yīng)對措施
- GB 12710-2024焦化安全規(guī)范
- 2022年中考化學(xué)模擬卷1(南京專用)
- 【牛客網(wǎng)】2024秋季校園招聘白皮書
- 2024-2025銀行對公業(yè)務(wù)場景金融創(chuàng)新報告
- 新加坡小學(xué)二年級英語試卷practice 2
- 小學(xué)五年級英語20篇英文閱讀理解(答案附在最后)
- 2023年遼寧鐵道職業(yè)技術(shù)學(xué)院高職單招(英語)試題庫含答案解析
- GB/T 23800-2009有機熱載體熱穩(wěn)定性測定法
- T-SFSF 000012-2021 食品生產(chǎn)企業(yè)有害生物風(fēng)險管理指南
- 水庫工程施工組織設(shè)計
評論
0/150
提交評論