• 大小: 8KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-02
  • 语言: Matlab
  • 标签: vrp  

资源简介

模拟退火算法解决vrp问题,模拟退火算法解决vrp问题。

资源截图

代码片段和文件信息

function res = calculateCost(routemodel)
    city = model.city;
    veh = model.veh;
    maps = model.maps;
    
    route = [city+veh route city+veh];
    res = 0;
    
    for i = 1:length(route)-1
        res = res + maps(route(i)route(i+1));
    end
    
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-06-02 14:48  VRP-模拟退火\
     文件         276  2018-06-02 14:25  VRP-模拟退火\calculateCost.m
     文件        1117  2018-06-02 14:24  VRP-模拟退火\createNeibor.m
     文件       10207  2018-06-02 14:24  VRP-模拟退火\hk48.tsp
     文件        1023  2018-06-02 14:22  VRP-模拟退火\initModel.m
     文件         332  2018-06-02 14:16  VRP-模拟退火\isFeasible.m
     文件         807  2018-06-02 14:16  VRP-模拟退火\plotSolution.m
     文件          81  2018-06-02 14:15  VRP-模拟退火\randomSol.m
     文件        1429  2018-06-02 14:14  VRP-模拟退火\sa.m

评论

共有 条评论