Python实现 蚁群算法库

scikit-opt
点击进入官网下载,或者按照官网上写的 pip install 安装

aca = ACA_TSP(func=cal_total_distance, n_dim=8,
              size_pop=10, max_iter=20,
              distance_matrix=distance_matrix)

best_x, best_y = aca.fit()

Python实现 蚁群算法库_第1张图片

你可能感兴趣的:(数学,机器学习,最优化,Python,蚁群算法,Python库,Python包,启发式算法)