`pyvrp-shipment` is a package for wrapper for solving shipment in PyVRP
Project description
pyvrp-shipment
pyvrp-shipment is a package for wrapper for solving shipment in PyVRP.
https://pyvrp.org/
Installation
pip install pyvrp-shipment
Example
from pyvrp_shipment import Order, Param, VehicleType_, solve
duration = {"nd1_nd2": 16}
vehicle_type = VehicleType_(num_available=1, capacity=10, max_duration=16 + 3 * 2)
orders = [Order("nd1", "nd2", delivery=10, service_duration=3)]
param = Param(duration, vehicle_type, orders)
result = solve(param, max_iterations=100, display=False)
if result.is_feasible():
print(result.result)
print("route =", result.order_indexes)
Solution results
================
# routes: 1
# clients: 2
objective: 16.00
# iterations: 100
run-time: 0.06 seconds
Routes
------
Route #1: 1 2
route = [[0]]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyvrp_shipment-0.2.2-py3-none-any.whl.
File metadata
- Download URL: pyvrp_shipment-0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0119a3d2ad0ca581eb308014852484678fdc97d993b3381f5b7343d3918e4610
|
|
| MD5 |
87ea8bd12fe648cbfb3705cb5ec133f0
|
|
| BLAKE2b-256 |
a14641c348b4a6fddb2be75de6ab2fec262cf3487d1fcf59fe36bf530be2211a
|