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:
parent
21d0a8b578
commit
bc96a81912
1 changed files with 7 additions and 0 deletions
|
|
@ -112,16 +112,23 @@ public class VehicleRoutingProblem {
|
||||||
|
|
||||||
private FleetSize fleetSize = FleetSize.INFINITE;
|
private FleetSize fleetSize = FleetSize.INFINITE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
private FleetComposition fleetComposition = FleetComposition.HOMOGENEOUS;
|
private FleetComposition fleetComposition = FleetComposition.HOMOGENEOUS;
|
||||||
|
|
||||||
private Collection<VehicleType> vehicleTypes;
|
private Collection<VehicleType> vehicleTypes;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated is not going to be used anymore
|
||||||
|
*/
|
||||||
private Collection<Constraint> problemConstraints;
|
private Collection<Constraint> problemConstraints;
|
||||||
|
|
||||||
private Collection<jsprit.core.problem.constraint.Constraint> constraints;
|
private Collection<jsprit.core.problem.constraint.Constraint> constraints;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* by default all locations are neighbors
|
* by default all locations are neighbors
|
||||||
|
* @deprecated is not going to be used anymore
|
||||||
*/
|
*/
|
||||||
private Neighborhood neighborhood = new Neighborhood() {
|
private Neighborhood neighborhood = new Neighborhood() {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue