├── .gitignore ├── README.md ├── ant.py ├── basic_aco.py ├── example1.py ├── example2.py ├── example3.py ├── image └── c101-example.gif ├── multiple_ant_colony_system.py ├── solomon-100 ├── c101.txt ├── c102.txt ├── c103.txt ├── c104.txt ├── c105.txt ├── c106.txt ├── c107.txt ├── c108.txt ├── c109.txt ├── c201.txt ├── c202.txt ├── c203.txt ├── c204.txt ├── c205.txt ├── c206.txt ├── c207.txt ├── c208.txt ├── r101.txt ├── r102.txt ├── r103.txt ├── r104.txt ├── r105.txt ├── r106.txt ├── r107.txt ├── r108.txt ├── r109.txt ├── r110.txt ├── r111.txt ├── r112.txt ├── r201.txt ├── r202.txt ├── r203.txt ├── r204.txt ├── r205.txt ├── r206.txt ├── r207.txt ├── r208.txt ├── r209.txt ├── r210.txt ├── r211.txt ├── rc101.txt ├── rc102.txt ├── rc103.txt ├── rc104.txt ├── rc105.txt ├── rc106.txt ├── rc107.txt ├── rc108.txt ├── rc201.txt ├── rc202.txt ├── rc203.txt ├── rc204.txt ├── rc205.txt ├── rc206.txt ├── rc207.txt └── rc208.txt ├── vprtw_aco_figure.py └── vrptw_base.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/README.md -------------------------------------------------------------------------------- /ant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/ant.py -------------------------------------------------------------------------------- /basic_aco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/basic_aco.py -------------------------------------------------------------------------------- /example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/example1.py -------------------------------------------------------------------------------- /example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/example2.py -------------------------------------------------------------------------------- /example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/example3.py -------------------------------------------------------------------------------- /image/c101-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/image/c101-example.gif -------------------------------------------------------------------------------- /multiple_ant_colony_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/multiple_ant_colony_system.py -------------------------------------------------------------------------------- /solomon-100/c101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c101.txt -------------------------------------------------------------------------------- /solomon-100/c102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c102.txt -------------------------------------------------------------------------------- /solomon-100/c103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c103.txt -------------------------------------------------------------------------------- /solomon-100/c104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c104.txt -------------------------------------------------------------------------------- /solomon-100/c105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c105.txt -------------------------------------------------------------------------------- /solomon-100/c106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c106.txt -------------------------------------------------------------------------------- /solomon-100/c107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c107.txt -------------------------------------------------------------------------------- /solomon-100/c108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c108.txt -------------------------------------------------------------------------------- /solomon-100/c109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c109.txt -------------------------------------------------------------------------------- /solomon-100/c201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c201.txt -------------------------------------------------------------------------------- /solomon-100/c202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c202.txt -------------------------------------------------------------------------------- /solomon-100/c203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c203.txt -------------------------------------------------------------------------------- /solomon-100/c204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c204.txt -------------------------------------------------------------------------------- /solomon-100/c205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c205.txt -------------------------------------------------------------------------------- /solomon-100/c206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c206.txt -------------------------------------------------------------------------------- /solomon-100/c207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c207.txt -------------------------------------------------------------------------------- /solomon-100/c208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/c208.txt -------------------------------------------------------------------------------- /solomon-100/r101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r101.txt -------------------------------------------------------------------------------- /solomon-100/r102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r102.txt -------------------------------------------------------------------------------- /solomon-100/r103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r103.txt -------------------------------------------------------------------------------- /solomon-100/r104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r104.txt -------------------------------------------------------------------------------- /solomon-100/r105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r105.txt -------------------------------------------------------------------------------- /solomon-100/r106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r106.txt -------------------------------------------------------------------------------- /solomon-100/r107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r107.txt -------------------------------------------------------------------------------- /solomon-100/r108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r108.txt -------------------------------------------------------------------------------- /solomon-100/r109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r109.txt -------------------------------------------------------------------------------- /solomon-100/r110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r110.txt -------------------------------------------------------------------------------- /solomon-100/r111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r111.txt -------------------------------------------------------------------------------- /solomon-100/r112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r112.txt -------------------------------------------------------------------------------- /solomon-100/r201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r201.txt -------------------------------------------------------------------------------- /solomon-100/r202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r202.txt -------------------------------------------------------------------------------- /solomon-100/r203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r203.txt -------------------------------------------------------------------------------- /solomon-100/r204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r204.txt -------------------------------------------------------------------------------- /solomon-100/r205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r205.txt -------------------------------------------------------------------------------- /solomon-100/r206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r206.txt -------------------------------------------------------------------------------- /solomon-100/r207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r207.txt -------------------------------------------------------------------------------- /solomon-100/r208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r208.txt -------------------------------------------------------------------------------- /solomon-100/r209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r209.txt -------------------------------------------------------------------------------- /solomon-100/r210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r210.txt -------------------------------------------------------------------------------- /solomon-100/r211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/r211.txt -------------------------------------------------------------------------------- /solomon-100/rc101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc101.txt -------------------------------------------------------------------------------- /solomon-100/rc102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc102.txt -------------------------------------------------------------------------------- /solomon-100/rc103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc103.txt -------------------------------------------------------------------------------- /solomon-100/rc104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc104.txt -------------------------------------------------------------------------------- /solomon-100/rc105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc105.txt -------------------------------------------------------------------------------- /solomon-100/rc106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc106.txt -------------------------------------------------------------------------------- /solomon-100/rc107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc107.txt -------------------------------------------------------------------------------- /solomon-100/rc108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc108.txt -------------------------------------------------------------------------------- /solomon-100/rc201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc201.txt -------------------------------------------------------------------------------- /solomon-100/rc202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc202.txt -------------------------------------------------------------------------------- /solomon-100/rc203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc203.txt -------------------------------------------------------------------------------- /solomon-100/rc204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc204.txt -------------------------------------------------------------------------------- /solomon-100/rc205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc205.txt -------------------------------------------------------------------------------- /solomon-100/rc206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc206.txt -------------------------------------------------------------------------------- /solomon-100/rc207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc207.txt -------------------------------------------------------------------------------- /solomon-100/rc208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/solomon-100/rc208.txt -------------------------------------------------------------------------------- /vprtw_aco_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/vprtw_aco_figure.py -------------------------------------------------------------------------------- /vrptw_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/VRPTW-ACO-python/HEAD/vrptw_base.py --------------------------------------------------------------------------------