├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data ├── json │ ├── C101.json │ ├── C102.json │ ├── C103.json │ ├── C104.json │ ├── C105.json │ ├── C106.json │ ├── C107.json │ ├── C108.json │ ├── C109.json │ ├── C201.json │ ├── C202.json │ ├── C203.json │ ├── C204.json │ ├── C205.json │ ├── C206.json │ ├── C207.json │ ├── C208.json │ ├── R101.json │ ├── R102.json │ ├── R103.json │ ├── R104.json │ ├── R105.json │ ├── R106.json │ ├── R107.json │ ├── R108.json │ ├── R109.json │ ├── R110.json │ ├── R111.json │ ├── R112.json │ ├── R201.json │ ├── R202.json │ ├── R203.json │ ├── R204.json │ ├── R205.json │ ├── R206.json │ ├── R207.json │ ├── R208.json │ ├── R209.json │ ├── R210.json │ ├── R211.json │ ├── RC101.json │ ├── RC102.json │ ├── RC103.json │ ├── RC104.json │ ├── RC105.json │ ├── RC106.json │ ├── RC107.json │ ├── RC108.json │ ├── RC201.json │ ├── RC202.json │ ├── RC203.json │ ├── RC204.json │ ├── RC205.json │ ├── RC206.json │ ├── RC207.json │ └── RC208.json ├── json_customize │ └── Customized_Data.json ├── text │ ├── 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 └── text_customize │ └── Customized_Data.txt ├── gavrptw ├── __init__.py ├── core.py └── utils.py ├── requirements.txt ├── results ├── C204_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv ├── Customized_Data_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv └── R101_uC8.0_iC60.0_wC0.5_dC1.5_iS25_pS80_cP0.85_mP0.01_nG100.csv ├── sample_C204.py ├── sample_R101.py ├── sample_customized_data.py ├── text2json.py └── text2json_customize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/README.md -------------------------------------------------------------------------------- /data/json/C101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C101.json -------------------------------------------------------------------------------- /data/json/C102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C102.json -------------------------------------------------------------------------------- /data/json/C103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C103.json -------------------------------------------------------------------------------- /data/json/C104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C104.json -------------------------------------------------------------------------------- /data/json/C105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C105.json -------------------------------------------------------------------------------- /data/json/C106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C106.json -------------------------------------------------------------------------------- /data/json/C107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C107.json -------------------------------------------------------------------------------- /data/json/C108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C108.json -------------------------------------------------------------------------------- /data/json/C109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C109.json -------------------------------------------------------------------------------- /data/json/C201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C201.json -------------------------------------------------------------------------------- /data/json/C202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C202.json -------------------------------------------------------------------------------- /data/json/C203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C203.json -------------------------------------------------------------------------------- /data/json/C204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C204.json -------------------------------------------------------------------------------- /data/json/C205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C205.json -------------------------------------------------------------------------------- /data/json/C206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C206.json -------------------------------------------------------------------------------- /data/json/C207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C207.json -------------------------------------------------------------------------------- /data/json/C208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/C208.json -------------------------------------------------------------------------------- /data/json/R101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R101.json -------------------------------------------------------------------------------- /data/json/R102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R102.json -------------------------------------------------------------------------------- /data/json/R103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R103.json -------------------------------------------------------------------------------- /data/json/R104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R104.json -------------------------------------------------------------------------------- /data/json/R105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R105.json -------------------------------------------------------------------------------- /data/json/R106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R106.json -------------------------------------------------------------------------------- /data/json/R107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R107.json -------------------------------------------------------------------------------- /data/json/R108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R108.json -------------------------------------------------------------------------------- /data/json/R109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R109.json -------------------------------------------------------------------------------- /data/json/R110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R110.json -------------------------------------------------------------------------------- /data/json/R111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R111.json -------------------------------------------------------------------------------- /data/json/R112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R112.json -------------------------------------------------------------------------------- /data/json/R201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R201.json -------------------------------------------------------------------------------- /data/json/R202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R202.json -------------------------------------------------------------------------------- /data/json/R203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R203.json -------------------------------------------------------------------------------- /data/json/R204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R204.json -------------------------------------------------------------------------------- /data/json/R205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R205.json -------------------------------------------------------------------------------- /data/json/R206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R206.json -------------------------------------------------------------------------------- /data/json/R207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R207.json -------------------------------------------------------------------------------- /data/json/R208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R208.json -------------------------------------------------------------------------------- /data/json/R209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R209.json -------------------------------------------------------------------------------- /data/json/R210.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R210.json -------------------------------------------------------------------------------- /data/json/R211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/R211.json -------------------------------------------------------------------------------- /data/json/RC101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC101.json -------------------------------------------------------------------------------- /data/json/RC102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC102.json -------------------------------------------------------------------------------- /data/json/RC103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC103.json -------------------------------------------------------------------------------- /data/json/RC104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC104.json -------------------------------------------------------------------------------- /data/json/RC105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC105.json -------------------------------------------------------------------------------- /data/json/RC106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC106.json -------------------------------------------------------------------------------- /data/json/RC107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC107.json -------------------------------------------------------------------------------- /data/json/RC108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC108.json -------------------------------------------------------------------------------- /data/json/RC201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC201.json -------------------------------------------------------------------------------- /data/json/RC202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC202.json -------------------------------------------------------------------------------- /data/json/RC203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC203.json -------------------------------------------------------------------------------- /data/json/RC204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC204.json -------------------------------------------------------------------------------- /data/json/RC205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC205.json -------------------------------------------------------------------------------- /data/json/RC206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC206.json -------------------------------------------------------------------------------- /data/json/RC207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC207.json -------------------------------------------------------------------------------- /data/json/RC208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json/RC208.json -------------------------------------------------------------------------------- /data/json_customize/Customized_Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/json_customize/Customized_Data.json -------------------------------------------------------------------------------- /data/text/C101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C101.txt -------------------------------------------------------------------------------- /data/text/C102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C102.txt -------------------------------------------------------------------------------- /data/text/C103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C103.txt -------------------------------------------------------------------------------- /data/text/C104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C104.txt -------------------------------------------------------------------------------- /data/text/C105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C105.txt -------------------------------------------------------------------------------- /data/text/C106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C106.txt -------------------------------------------------------------------------------- /data/text/C107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C107.txt -------------------------------------------------------------------------------- /data/text/C108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C108.txt -------------------------------------------------------------------------------- /data/text/C109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C109.txt -------------------------------------------------------------------------------- /data/text/C201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C201.txt -------------------------------------------------------------------------------- /data/text/C202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C202.txt -------------------------------------------------------------------------------- /data/text/C203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C203.txt -------------------------------------------------------------------------------- /data/text/C204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C204.txt -------------------------------------------------------------------------------- /data/text/C205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C205.txt -------------------------------------------------------------------------------- /data/text/C206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C206.txt -------------------------------------------------------------------------------- /data/text/C207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C207.txt -------------------------------------------------------------------------------- /data/text/C208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/C208.txt -------------------------------------------------------------------------------- /data/text/R101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R101.txt -------------------------------------------------------------------------------- /data/text/R102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R102.txt -------------------------------------------------------------------------------- /data/text/R103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R103.txt -------------------------------------------------------------------------------- /data/text/R104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R104.txt -------------------------------------------------------------------------------- /data/text/R105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R105.txt -------------------------------------------------------------------------------- /data/text/R106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R106.txt -------------------------------------------------------------------------------- /data/text/R107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R107.txt -------------------------------------------------------------------------------- /data/text/R108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R108.txt -------------------------------------------------------------------------------- /data/text/R109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R109.txt -------------------------------------------------------------------------------- /data/text/R110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R110.txt -------------------------------------------------------------------------------- /data/text/R111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R111.txt -------------------------------------------------------------------------------- /data/text/R112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R112.txt -------------------------------------------------------------------------------- /data/text/R201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R201.txt -------------------------------------------------------------------------------- /data/text/R202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R202.txt -------------------------------------------------------------------------------- /data/text/R203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R203.txt -------------------------------------------------------------------------------- /data/text/R204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R204.txt -------------------------------------------------------------------------------- /data/text/R205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R205.txt -------------------------------------------------------------------------------- /data/text/R206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R206.txt -------------------------------------------------------------------------------- /data/text/R207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R207.txt -------------------------------------------------------------------------------- /data/text/R208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R208.txt -------------------------------------------------------------------------------- /data/text/R209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R209.txt -------------------------------------------------------------------------------- /data/text/R210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R210.txt -------------------------------------------------------------------------------- /data/text/R211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/R211.txt -------------------------------------------------------------------------------- /data/text/RC101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC101.txt -------------------------------------------------------------------------------- /data/text/RC102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC102.txt -------------------------------------------------------------------------------- /data/text/RC103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC103.txt -------------------------------------------------------------------------------- /data/text/RC104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC104.txt -------------------------------------------------------------------------------- /data/text/RC105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC105.txt -------------------------------------------------------------------------------- /data/text/RC106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC106.txt -------------------------------------------------------------------------------- /data/text/RC107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC107.txt -------------------------------------------------------------------------------- /data/text/RC108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC108.txt -------------------------------------------------------------------------------- /data/text/RC201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC201.txt -------------------------------------------------------------------------------- /data/text/RC202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC202.txt -------------------------------------------------------------------------------- /data/text/RC203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC203.txt -------------------------------------------------------------------------------- /data/text/RC204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC204.txt -------------------------------------------------------------------------------- /data/text/RC205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC205.txt -------------------------------------------------------------------------------- /data/text/RC206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC206.txt -------------------------------------------------------------------------------- /data/text/RC207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC207.txt -------------------------------------------------------------------------------- /data/text/RC208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text/RC208.txt -------------------------------------------------------------------------------- /data/text_customize/Customized_Data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/data/text_customize/Customized_Data.txt -------------------------------------------------------------------------------- /gavrptw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/gavrptw/__init__.py -------------------------------------------------------------------------------- /gavrptw/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/gavrptw/core.py -------------------------------------------------------------------------------- /gavrptw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/gavrptw/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | deap==1.4.3 2 | numpy==2.3.5 3 | -------------------------------------------------------------------------------- /results/C204_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/results/C204_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv -------------------------------------------------------------------------------- /results/Customized_Data_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/results/Customized_Data_uC8.0_iC100.0_wC1.0_dC1.5_iS100_pS400_cP0.85_mP0.02_nG300.csv -------------------------------------------------------------------------------- /results/R101_uC8.0_iC60.0_wC0.5_dC1.5_iS25_pS80_cP0.85_mP0.01_nG100.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/results/R101_uC8.0_iC60.0_wC0.5_dC1.5_iS25_pS80_cP0.85_mP0.01_nG100.csv -------------------------------------------------------------------------------- /sample_C204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/sample_C204.py -------------------------------------------------------------------------------- /sample_R101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/sample_R101.py -------------------------------------------------------------------------------- /sample_customized_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/sample_customized_data.py -------------------------------------------------------------------------------- /text2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/text2json.py -------------------------------------------------------------------------------- /text2json_customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iRB-Lab/py-ga-VRPTW/HEAD/text2json_customize.py --------------------------------------------------------------------------------