mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
make set a LinkedHashSet to further improve reproducibility
This commit is contained in:
parent
eba3d3c033
commit
d55c080fee
1 changed files with 2 additions and 2 deletions
|
|
@ -88,9 +88,9 @@ public class VehicleRoutingProblem {
|
||||||
|
|
||||||
private Collection<VehicleRoute> initialRoutes = new ArrayList<VehicleRoute>();
|
private Collection<VehicleRoute> initialRoutes = new ArrayList<VehicleRoute>();
|
||||||
|
|
||||||
private Set<Vehicle> uniqueVehicles = new HashSet<Vehicle>();
|
private Set<Vehicle> uniqueVehicles = new LinkedHashSet<Vehicle>();
|
||||||
|
|
||||||
private Set<String> addedVehicleIds = new HashSet<String>();
|
private Set<String> addedVehicleIds = new LinkedHashSet<String>();
|
||||||
|
|
||||||
private boolean hasBreaks = false;
|
private boolean hasBreaks = false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue