vrplib
is a Python package for reading Vehicle Routing Problem (VRP) instances. The main features are:
- reading VRPLIB and Solomon instances and solutions, and
- downloading instances and best known solutions from CVRPLIB.
This library works with Python 3.8+ and only depends on numpy
. Install the latest version of vrplib
:
pip install vrplib
import vrplib
# Read VRPLIB formatted instances (default)
instance = vrplib.read_instance("/path/to/X-n101-k25.vrp")
solution = vrplib.read_solution("/path/to/X-n101-k25.sol")
# Read Solomon formatted instances
instance = vrplib.read_instance("/path/to/C101.txt", instance_format="solomon")
solution = vrplib.read_solution("/path/to/C101.sol") # only 1 solution format
instance
and solution
are dictionaries that contain all parsed data.
instance.keys()
# dict_keys(['name', 'comment', 'type', 'dimension', ..., 'edge_weight'])
solutions.keys()
# dict_keys(['routes', 'cost'])
import vrplib
# Download an instance and a solution file
vrplib.download_instance("X-n101-k25", "/path/to/instances/")
vrplib.download_solution("X-n101-k25", "/path/to/solutions/")
# List all instance names that can be downloaded
vrplib.list_names() # All instance names
vrplib.list_names(low=100, high=200) # Instances with between [100, 200] customers
vrplib.list_names(vrp_type='cvrp') # Only CVRP instances
vrplib.list_names(vrp_type='vrptw') # Only VRPTW instances
This section contains some brief documentation about the vrplib
package.
Currently, two VRP instance formats are supported:
- VRPLIB: this format is most commonly used for Capacitated Vehicle Routing Problem (CVRP) instances. See the X-n101-k25 instance for an example. VRPLIB is an extension of the TSPLIB95 format. Additional information about the VRPLIB format can be found here.
- Solomon: this format was used to introduce the Solomon instances for the Vehicle Routing Problem with Time Window (VRPTW) and also the extended instance set by Homberger and Gehring. See the C101 instance for an example.
vrplib
parses an instance and returns a dictionary of keyword-value pairs. There are two types of instance data:
- Problem specifications, which may contain metadata or problem-specific information such as the max number of vehicles.
- Problem data, which are often arrays of values describing, for example, customer service times and time windows.
The vrplib
library tries to follow the instance specifications as strictly as possible to compute the distances.
For VRPLIB instances, the distances computation is determined by the EDGE_WEIGHT_TYPE
and possibly the EDGE_WEIGHT_FORMAT
specifications. We currently support two categories of edge weight types:
*_2D
: compute the Euclidean distances using the node coordinate data.EUC_2D
: Double precision distances without rounding.FLOOR_2D
: Round down all distances to down to an integer.EXACT_2D
: Multiply the distances by 1000, round to the nearest integer.
EXPLICIT
: the distance data is explicitly provided, in partial or full form. For explicit matrices, theEDGE_WEIGHT_FORMAT
must be specified. We support the following two formats:LOWER_ROW
: Lower row triangular matrix without diagonal entries.FULL_MATRIX
: Explicit full matrix representation.
More information about how VRPLIB specifications can be found here and here.
Note that there are VRPLIB instances that use different rounding conventions in the literature, which may not be specified in the instance. For example, the X instance set proposed by Uchoa et al. (2017) assumes that the distances are rounded to the nearest integer. When you use the vrplib
package to read instances from the X set, it will return unrounded Euclidean distances because the instance specifies the EUC_2D
edge weight type, i.e., no rouding. This can be easily solved by rounding the distances matrix manually.
For Solomon-type instances, the distance computation is not specified in the instance file, hence we compute the Euclidean distances without rounding. A recent convention that was proposed during the 2021 DIMACS Vehicle Routing Implementation Challenge is to truncate the Euclidean distances to one decimal. Similar to the X instance set, you can manually modify the distances matrix.
- Downloading files may take up to a few seconds.
- The
XML100
benchmark set is not listed inlist_names
and cannot be downloaded through this package. You can download these instances directly from CVRPLIB.