summaryrefslogtreecommitdiffstats
path: root/example1.py
blob: c7629e893d342b1665848a39675f1a96a1810f7b (plain)
1
2
3
4
5
6
7
8
9
10
from vrptw_base import VrptwGraph
from multiple_ant_colony_system import MultipleAntColonySystem


if __name__ == '__main__':
    file_path = './solomon-100/c101.txt'
    graph = VrptwGraph(file_path)

    macs = MultipleAntColonySystem(graph)
    macs.run_multiple_ant_colony_system()