Skip to content
Snippets Groups Projects
Commit 9b42dbf3 authored by Romain BERNARD's avatar Romain BERNARD
Browse files

iterate on vehicles properly

parent a085e1af
No related branches found
No related tags found
1 merge request!2Route manipulation API with automatic constraint propagation
......@@ -38,6 +38,7 @@ size_t BestInsertionHeuristic::doBestRequestInsertionForRoute(size_t requestId,
//Iteratively try inserting in every active vehicle and the first inactive vehicle
while(vehicleId <= route.getLastActiveVehicleId() + 1 && !insertionSuccess) {
insertionSuccess = tryVehicleBestInsertion(requestId, vehicleId, route);
++vehicleId;
}
//Update last active vehicle ID
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment