├── CWRP_Report.pdf ├── Genatic1 └── VRP.py ├── Genetic2 ├── bin │ ├── CVRPSolver.class │ ├── FileDataReaderGenerator.class │ ├── Location.class │ ├── RunMultipleTests.class │ └── Vehicle.class ├── data │ ├── 120Nodes.txt │ ├── 32Nodes.txt │ ├── 36Nodes.txt │ ├── 37Nodes.txt │ ├── 45Nodes.txt │ ├── fruitybun7.txt │ └── fruitybun75.txt └── src │ ├── CVRPSolver.java │ ├── FileDataReaderGenerator.java │ ├── Location.java │ ├── RunMultipleTests.java │ └── Vehicle.java ├── Presentations ├── Vehicle Routing Problem - FinalVersion.pptx └── Vehicle Routing Problem - Overview.pptx ├── README.md ├── Savings ├── cvrpImprovedImpl.py ├── cvrpImprovedImpl.pyc ├── data-n36-k6.json ├── data-n37-k6.json ├── data.json ├── data1.json ├── data2.json ├── data4.json ├── data5-n45-k6.json ├── util.py └── util.pyc └── Sweep ├── Sweep.py ├── data124.json ├── data31.json ├── data36.json ├── data37.json ├── data45.json └── data79.json /CWRP_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/CWRP_Report.pdf -------------------------------------------------------------------------------- /Genatic1/VRP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genatic1/VRP.py -------------------------------------------------------------------------------- /Genetic2/bin/CVRPSolver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/bin/CVRPSolver.class -------------------------------------------------------------------------------- /Genetic2/bin/FileDataReaderGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/bin/FileDataReaderGenerator.class -------------------------------------------------------------------------------- /Genetic2/bin/Location.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/bin/Location.class -------------------------------------------------------------------------------- /Genetic2/bin/RunMultipleTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/bin/RunMultipleTests.class -------------------------------------------------------------------------------- /Genetic2/bin/Vehicle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/bin/Vehicle.class -------------------------------------------------------------------------------- /Genetic2/data/120Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/120Nodes.txt -------------------------------------------------------------------------------- /Genetic2/data/32Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/32Nodes.txt -------------------------------------------------------------------------------- /Genetic2/data/36Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/36Nodes.txt -------------------------------------------------------------------------------- /Genetic2/data/37Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/37Nodes.txt -------------------------------------------------------------------------------- /Genetic2/data/45Nodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/45Nodes.txt -------------------------------------------------------------------------------- /Genetic2/data/fruitybun7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/fruitybun7.txt -------------------------------------------------------------------------------- /Genetic2/data/fruitybun75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/data/fruitybun75.txt -------------------------------------------------------------------------------- /Genetic2/src/CVRPSolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/src/CVRPSolver.java -------------------------------------------------------------------------------- /Genetic2/src/FileDataReaderGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/src/FileDataReaderGenerator.java -------------------------------------------------------------------------------- /Genetic2/src/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/src/Location.java -------------------------------------------------------------------------------- /Genetic2/src/RunMultipleTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/src/RunMultipleTests.java -------------------------------------------------------------------------------- /Genetic2/src/Vehicle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Genetic2/src/Vehicle.java -------------------------------------------------------------------------------- /Presentations/Vehicle Routing Problem - FinalVersion.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Presentations/Vehicle Routing Problem - FinalVersion.pptx -------------------------------------------------------------------------------- /Presentations/Vehicle Routing Problem - Overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Presentations/Vehicle Routing Problem - Overview.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/README.md -------------------------------------------------------------------------------- /Savings/cvrpImprovedImpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/cvrpImprovedImpl.py -------------------------------------------------------------------------------- /Savings/cvrpImprovedImpl.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/cvrpImprovedImpl.pyc -------------------------------------------------------------------------------- /Savings/data-n36-k6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data-n36-k6.json -------------------------------------------------------------------------------- /Savings/data-n37-k6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data-n37-k6.json -------------------------------------------------------------------------------- /Savings/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data.json -------------------------------------------------------------------------------- /Savings/data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data1.json -------------------------------------------------------------------------------- /Savings/data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data2.json -------------------------------------------------------------------------------- /Savings/data4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data4.json -------------------------------------------------------------------------------- /Savings/data5-n45-k6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/data5-n45-k6.json -------------------------------------------------------------------------------- /Savings/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/util.py -------------------------------------------------------------------------------- /Savings/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Savings/util.pyc -------------------------------------------------------------------------------- /Sweep/Sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/Sweep.py -------------------------------------------------------------------------------- /Sweep/data124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data124.json -------------------------------------------------------------------------------- /Sweep/data31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data31.json -------------------------------------------------------------------------------- /Sweep/data36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data36.json -------------------------------------------------------------------------------- /Sweep/data37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data37.json -------------------------------------------------------------------------------- /Sweep/data45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data45.json -------------------------------------------------------------------------------- /Sweep/data79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shlok57/VehicleRoutingProblem/HEAD/Sweep/data79.json --------------------------------------------------------------------------------