Question : Is there a simple starter example of Periodic VRP with a month of planning period ?
See original GitHub issueIn the documentation, I noticed that just setting the frequency of visits for each node is given as an option. How do I set the duration ( planning period ) and define periodicity in a better way ?
Also - how would I get the routes for each day in the planning period from the solved problem.
I have a central depot where nodes ( customers ) are to be visited a certain number of times every month.
G.nodes[1]["frequency"] = 2
prob.periodic = True
Apologies if the question is very basic. I am new to vehicle routing problems. Any help would be appreciated !
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Vehicle Routing Problem | OR-Tools - Google Developers
In the Vehicle Routing Problem (VRP), the goal is to find optimal routes for multiple vehicles visiting a set of locations. (When there's...
Read more >Solving Vehicle Routing Problems: Optimization Software and ...
The Vehicle Routing Problem or VRP is the challenge of designing ... one – Starter, for $17.10 per driver/month – allows for planning...
Read more >A unified model framework for the multi-attribute consistent ...
The periodic VRP (PVRP) is a classical extension in which routes are determined for a planning period of several days and each customer...
Read more >Mobile healthcare services in rural areas: an application with ...
We model this as a periodic location routing problem and use the policies of Ministry of Health of Turkey as a basis for...
Read more >Workload Equity in Multi-Period Vehicle Routing Problems
Keywords: Vehicle routing problem, Multiple periods, ... (2020) balanced the workload among routes for a periodic home health care ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks again ! I was able to run it on dummy data using a 10 day planning period and I have started using it for my problem.
Code snippet is provided for future reference below [ Hope I have understood the changes correctly ]
Yes exactly, the fixed cost is added on a per route basis, so it is charged for every route, every day of the planning period. It could be the driver’s salary for example.