1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00
This commit is contained in:
oblonski 2014-01-14 10:52:35 -05:00
parent 11639fe088
commit c809d4b7c9

View file

@ -388,7 +388,7 @@ public class VehicleRoutingProblem {
Vehicle penVehicle = VehicleImpl.Builder.newInstance(vehicleId).setEarliestStart(v.getEarliestDeparture())
.setLatestArrival(v.getLatestArrival()).setLocationCoord(v.getCoord()).setLocationId(v.getLocationId())
.setReturnToDepot(v.isReturnToDepot()).setType(penType).build();
vehicles.add(penVehicle);
addVehicle(penVehicle);
}
}