diff options
| author | JonZhao <[email protected]> | 2019-05-29 11:21:19 +0800 |
|---|---|---|
| committer | JonZhao <[email protected]> | 2019-05-29 11:21:19 +0800 |
| commit | 8d459d62b4deed1212f613cad1967b36ca385d5a (patch) | |
| tree | 7e34f4374c753d637ba45c5b6ea973e84b5a79cf /main.py | |
| parent | 7dd68707124da17bc0de801de4c690be515926ab (diff) | |
| download | VRPTW-ACO-python-8d459d62b4deed1212f613cad1967b36ca385d5a.tar.gz VRPTW-ACO-python-8d459d62b4deed1212f613cad1967b36ca385d5a.tar.bz2 VRPTW-ACO-python-8d459d62b4deed1212f613cad1967b36ca385d5a.zip | |
1. add reference
2. fix some error in macs calculate next index
3. add comment
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/main.py b/main.py deleted file mode 100644 index efb4951..0000000 --- a/main.py +++ /dev/null @@ -1,14 +0,0 @@ -from vrptw_base import VrptwGraph -from basic_aco import BasicACO -from multiple_ant_colony_system import MultipleAntColonySystem - - -if __name__ == '__main__': - file_path = './solomon-100/c101.txt' - graph = VrptwGraph(file_path) - - # vrptw = BasicACO(graph) - # vrptw.run_basic_aco() - - macs = MultipleAntColonySystem(graph) - macs.run_multiple_ant_colony_system() |
