1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

Merge branch 'master' into vrph

This commit is contained in:
oblonski 2014-01-14 10:53:09 -05:00
commit af183ebafb

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);
}
}