solve_vehicle_routing_problem
Optimize routes for multiple vehicles by solving the Vehicle Routing Problem (VRP). Input locations, vehicle capacities, and optional matrices for distance or time constraints. Outputs efficient routes within a specified time limit.
Instructions
Solve Vehicle Routing Problem (VRP) to optimize routes for multiple vehicles.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depot | No | ||
distance_matrix | No | ||
locations | Yes | ||
time_limit_seconds | No | ||
time_matrix | No | ||
vehicles | Yes |