├── .gitignore ├── LICENSE ├── PMSP ├── Time integer Modeling.md ├── gantt_plot.py ├── one_machine_model.py ├── pmsp_gurobi.py └── pmsp_gurobi_TIM.py ├── README.md ├── TSP ├── TSP.md ├── tsp_gurobi_DFJ.py ├── tsp_gurobi_MTZ.py └── tsp_gurobi_subtour.py └── VRPTW └── MIP_model.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/LICENSE -------------------------------------------------------------------------------- /PMSP/Time integer Modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/PMSP/Time integer Modeling.md -------------------------------------------------------------------------------- /PMSP/gantt_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/PMSP/gantt_plot.py -------------------------------------------------------------------------------- /PMSP/one_machine_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/PMSP/one_machine_model.py -------------------------------------------------------------------------------- /PMSP/pmsp_gurobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/PMSP/pmsp_gurobi.py -------------------------------------------------------------------------------- /PMSP/pmsp_gurobi_TIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/PMSP/pmsp_gurobi_TIM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/README.md -------------------------------------------------------------------------------- /TSP/TSP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/TSP/TSP.md -------------------------------------------------------------------------------- /TSP/tsp_gurobi_DFJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/TSP/tsp_gurobi_DFJ.py -------------------------------------------------------------------------------- /TSP/tsp_gurobi_MTZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/TSP/tsp_gurobi_MTZ.py -------------------------------------------------------------------------------- /TSP/tsp_gurobi_subtour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/TSP/tsp_gurobi_subtour.py -------------------------------------------------------------------------------- /VRPTW/MIP_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseypen/AGvehicle_routing_problem/HEAD/VRPTW/MIP_model.md --------------------------------------------------------------------------------