From ff163ce089245267b33daaa2def74d6bcc9df487 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Tue, 4 Feb 2025 15:16:44 +0100 Subject: [PATCH] routing: fix vrp_items_to_deliver.py --- ortools/constraint_solver/samples/vrp_items_to_deliver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/constraint_solver/samples/vrp_items_to_deliver.py b/ortools/constraint_solver/samples/vrp_items_to_deliver.py index b64917b982..c222365260 100755 --- a/ortools/constraint_solver/samples/vrp_items_to_deliver.py +++ b/ortools/constraint_solver/samples/vrp_items_to_deliver.py @@ -465,7 +465,7 @@ def main(): # Create the routing index manager. # [START index_manager] - manager = pywraprouting.RoutingIndexManager( + manager = pywrapcp.RoutingIndexManager( len(data["distance_matrix"]), data["num_vehicles"], data["starts"],