1 简介提出一种基于混沌和精英反向学习的混合灰狼优化算法以解决高维优化问题.首先,采用混沌序列产生初始种群为算法进行全局搜索奠定基础;然后,对当前精英个体分别执行精英反向学习策略以协调算法的勘探和开采能力;最后,在搜索过程中对决策层个体进行混沌扰动,以避免算法陷入局部最优的可能性.选取10个高维(100维,500维和1 000维)标准测试函数进行数值实验,结果表明,混合灰狼优化算法在求解精度及收敛速度指标上均明显优于对比算法.灰狼优化 (GWO) 算法是由 Mirialili 等[8]于 2014年提出的一种新型群体智能优化算法, 它源于对自然界中灰狼种群的等级层次机制和捕食行为的模拟, 通过狼群跟踪、包围、追捕、攻击猎物等过程实现优化的目的. GWO 算法具有原理简单、参数设置少、较强的全局搜索能力等特点, 在函数优化方面, 已被证明在求解精度和收敛速度上均优于粒子群优化算法2 部分代码clear all clc SearchAgents_no30; % Number of search agents Max_iteration1000; % Maximum numbef of iterations Function_nameF2; % Name of the test function that can be from F1 to F23 (Table 1,2,3 in the paper) %for func_num18:23; % initial_flag0; %Function_namestrcat(F,num2str(func_num)); % timecputime; % Load details of the selected benchmark function [lb,ub,dim,fobj]Get_Functions_details(Function_name); [Best_score,Best_pos,GWO_cg_curve]GWO(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); [Best_score,Best_pos,IGWO_cg_curve]IGWO(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); % PSO_cg_curvePSO(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); % run PSO to compare to results [Best_score,Best_pos,CGWO_cg_curve]CGWO(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); [Best_score,Best_pos,FGWO_cg_curve]FGWO(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); [Best_score,Best_pos,SCA_cg_curve]SCA(SearchAgents_no,Max_iteration,lb,ub,dim,fobj); figure(Position,[500 500 660 290]) %Draw search space subplot(1,2,1); func_plot(Function_name); title(Parameter space) xlabel(x_1); ylabel(x_2); zlabel([Function_name,( x_1 , x_2 )]) %Draw objective space subplot(1,2,2); semilogy(GWO_cg_curve,Color,r) hold on % semilogy(PSO_cg_curve,Color,b) title(Objective space) xlabel(Iteration); ylabel(Best score obtained so far); hold on semilogy(IGWO_cg_curve,Color,g) title(Objective space) xlabel(Iteration); ylabel(Best score obtained so far); hold on semilogy(CGWO_cg_curve,Color,c) title(Objective space) xlabel(Iteration); ylabel(Best score obtained so far); hold on semilogy(FGWO_cg_curve,Color,m) title(Objective space) xlabel(Iteration); ylabel(Best score obtained so far); hold on semilogy(SCA_cg_curve,Color,k) title(Objective space) xlabel(Iteration); ylabel(Best score obtained so far); CGWO_avemean2(CGWO_cg_curve); CGWO_stdstd2(CGWO_cg_curve); GWO_avemean2(GWO_cg_curve); GWO_stdstd2(GWO_cg_curve); FGWO_avemean2(FGWO_cg_curve); FGWO_stdstd2(FGWO_cg_curve); IGWO_avemean2(IGWO_cg_curve); IGWO_stdstd2(IGWO_cg_curve); % PSO_avemean2(PSO_cg_curve); % PSO_stdstd2(PSO_cg_curve); SCA_avemean2(SCA_cg_curve); SCA_stdstd2(SCA_cg_curve); axis tight grid on box on legend(GWO,IGWO,CGWO,FGWO,SCA) display([The best solution obtained by CGWO is : , num2str(Best_pos)]); display([The best optimal value of the objective funciton found by CGWO is : , num2str(Best_score)]);3 仿真结果4 参考文献[1]龙文, 蔡绍洪, 焦建军,等. 求解高维优化问题的混合灰狼优化算法[J]. 控制与决策, 2016, 31(11):7.