资源简介
基本的matlab蚁群算法求解vrp问题
代码片段和文件信息
%对结果进行2-OPT优化
function f=opt2(Line)
%数组长度
size=length(Line);
NewLine=Line; % 返回结果先设置成原来路径
Flag=1;
while (Flag == 1)
Flag=0;
for i=1:size-2
a=Line(11:i); %路径前段
b=fliplr(Line(1i+1:size)); %路径后段倒置
c=cat(2ab); %新路径
%新路径更好就替换
if (PathLength(c) NewLine=c;
Flag=1;
fprintf(‘\n======================= 2-OPT 优化成功! ===‘);
end
end
end
%返回结果
f=NewLine;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 938 2011-12-16 23:34 PathLength.m
文件 5469 2011-12-17 10:08 vrp.m
文件 332 2011-12-15 16:45 @ant\ant.m
文件 380 2011-12-15 20:24 @ant\get.m
文件 4813 2011-12-15 20:24 @ant\Search.m
文件 529 2011-12-14 23:30 data.txt
文件 600 2011-12-16 11:01 data2.txt
文件 647 2011-12-17 09:51 opt2.m
目录 0 2011-12-16 08:17 @ant
----------- --------- ---------- ----- ----
13708 9
- 上一篇:kd-树matlab程序
- 下一篇:hill密码MATLAB问题
相关资源
- ACO 用MATLAB编写的蚁群算法最短路径寻
- cw 带时间窗的节约算法
- algorithms 我个人收集的各类智能算法
- pathplann-algorithm
- Genetic_and_Ant_Algorithms_src 对想研究改进
- 30-cases-in-matlab MATLAB智能算法30个案例
- ESDA 无线传感器网络覆盖 基于蚁群算
- ant-algorithim
- guangpan3 《MATLAB智能算法超级学习手册
- Ant-colony-algorithm 将蚁群算法应用到无
- ACO-BP
- VRP 蚁群算法
- VRP_algorithm 5个求解车辆路径问题(V
-
TSP-ba
sed-on-improved-pso 基于对粒子群优 - Ant-colony-algorithm 蚁群算法
- VVRPe
- Desktop
- XX_VRPTW
- TWVRP 对物流配送问题的带时间窗车辆
- ant-colony-algorithm 蚁群算法选址的电动
- MATLAB-遗传算法-多车场-开放式-带时间
- matlab 蚁群算法求解基本TSP问题的源
- matlab程序蚁群,势场.zip
- 模拟退火算法求解VRPTW问题,内以及相
- 退火算法求解cvrp问题,MATLAB代码及相
- 遗传算法实现CVRP问题
- Matlab基于蚁群算法的三维路径规划算
- Matlab改进的混沌蚂蚁群算法-改进的混
- 物流配送蚁群算法
- 三种蚁群优化算法MATLAB源代码
评论
共有 条评论