mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
modified id of penalty vehicles, it now matches original vehicle id
according to issue #102
This commit is contained in:
parent
5e11591009
commit
6a3746a7db
1 changed files with 2 additions and 1 deletions
|
|
@ -353,7 +353,8 @@ public class VehicleRoutingProblem {
|
||||||
.setCapacityDimensions(v.getType().getCapacityDimensions())
|
.setCapacityDimensions(v.getType().getCapacityDimensions())
|
||||||
.build();
|
.build();
|
||||||
PenaltyVehicleType penType = new PenaltyVehicleType(t,penaltyFactor);
|
PenaltyVehicleType penType = new PenaltyVehicleType(t,penaltyFactor);
|
||||||
String vehicleId = "penaltyVehicle_" + new VehicleTypeKey(v.getType().getTypeId(),v.getStartLocationId(),v.getEndLocationId(),v.getEarliestDeparture(),v.getLatestArrival()).toString();
|
String vehicleId = v.getId();
|
||||||
|
// String vehicleId = "penaltyVehicle_" + new VehicleTypeKey(v.getType().getTypeId(),v.getStartLocationId(),v.getEndLocationId(),v.getEarliestDeparture(),v.getLatestArrival()).toString();
|
||||||
Vehicle penVehicle = VehicleImpl.Builder.newInstance(vehicleId).setEarliestStart(v.getEarliestDeparture())
|
Vehicle penVehicle = VehicleImpl.Builder.newInstance(vehicleId).setEarliestStart(v.getEarliestDeparture())
|
||||||
.setLatestArrival(v.getLatestArrival()).setStartLocationCoordinate(v.getStartLocationCoordinate()).setStartLocationId(v.getStartLocationId())
|
.setLatestArrival(v.getLatestArrival()).setStartLocationCoordinate(v.getStartLocationCoordinate()).setStartLocationId(v.getStartLocationId())
|
||||||
.setEndLocationId(v.getEndLocationId()).setEndLocationCoordinate(v.getEndLocationCoordinate())
|
.setEndLocationId(v.getEndLocationId()).setEndLocationCoordinate(v.getEndLocationCoordinate())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue