diff options
Diffstat (limited to 'multiple_ant_colony_system.py')
| -rw-r--r-- | multiple_ant_colony_system.py | 2 |
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() |
