summaryrefslogtreecommitdiffstats
path: root/multiple_ant_colony_system.py
diff options
context:
space:
mode:
authorJonZhao <[email protected]>2019-06-04 21:11:18 +0800
committerJonZhao <[email protected]>2019-06-04 21:11:18 +0800
commit2ccd546062ac96fdf9e1e9229d8ec3df5997e928 (patch)
tree6bcab87cca8042ba287fd745de8171fab501f9ac /multiple_ant_colony_system.py
parent8bef8ced7954900eb39d01a818173c469adc80d1 (diff)
downloadVRPTW-ACO-python-2ccd546062ac96fdf9e1e9229d8ec3df5997e928.tar.gz
VRPTW-ACO-python-2ccd546062ac96fdf9e1e9229d8ec3df5997e928.tar.bz2
VRPTW-ACO-python-2ccd546062ac96fdf9e1e9229d8ec3df5997e928.zip
更新local_search_procedure
Diffstat (limited to 'multiple_ant_colony_system.py')
-rw-r--r--multiple_ant_colony_system.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/multiple_ant_colony_system.py b/multiple_ant_colony_system.py
index b4e6f92..6dced28 100644
--- a/multiple_ant_colony_system.py
+++ b/multiple_ant_colony_system.py
@@ -203,7 +203,7 @@ class MultipleAntColonySystem:
# 向macs发送计算得到的当前的最佳路径
if ant_best_travel_distance is not None and ant_best_travel_distance < global_best_distance:
- print('[acs_time]: local search for global_path found a improved feasible path, send path info to macs')
+ print('[acs_time]: ants\' local search found a improved feasible path, send path info to macs')
path_found_queue.put(PathMessage(ant_best_path, ant_best_travel_distance))
ants_thread.clear()