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

Update VehicleRoutingProblem.java

This commit is contained in:
jsprit 2013-12-27 23:03:48 +01:00
parent 21d0a8b578
commit bc96a81912

View file

@ -112,16 +112,23 @@ public class VehicleRoutingProblem {
private FleetSize fleetSize = FleetSize.INFINITE;
/*
* @deprecated
*/
private FleetComposition fleetComposition = FleetComposition.HOMOGENEOUS;
private Collection<VehicleType> vehicleTypes;
/**
* @deprecated is not going to be used anymore
*/
private Collection<Constraint> problemConstraints;
private Collection<jsprit.core.problem.constraint.Constraint> constraints;
/**
* by default all locations are neighbors
* @deprecated is not going to be used anymore
*/
private Neighborhood neighborhood = new Neighborhood() {