phguo / VRP

A Python package for plotting Vehicle Routing Problem (VRP) solutions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VRP

A Python package for plotting Vehicle Routing Problem (VRP) solutions.

Usage

Install this package using pip install VRP, then

from vrp.draw import draw_vrp

pos = {1: (0, 0), 2: (1, 1), 3: (2, 3)}
routes = [[1, 2, 3, 1]]
draw_vrp(pos, routes, save_file=True)

About

A Python package for plotting Vehicle Routing Problem (VRP) solutions.

License:GNU General Public License v3.0


Languages

Language:Python 94.2%Language:Makefile 5.8%