mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
Update FiniteFleetManagerFactory.java
This commit is contained in:
parent
273a67d1ac
commit
c06066503a
1 changed files with 4 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ package jsprit.core.problem.vehicle;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory that constructs a finite fleet manager.
|
* Factory that constructs a finite fleetmanager.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -11,6 +11,9 @@ public class FiniteFleetManagerFactory implements VehicleFleetManagerFactory{
|
||||||
|
|
||||||
private Collection<Vehicle> vehicles;
|
private Collection<Vehicle> vehicles;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constucts the factory.
|
||||||
|
*/
|
||||||
public FiniteFleetManagerFactory(Collection<Vehicle> vehicles) {
|
public FiniteFleetManagerFactory(Collection<Vehicle> vehicles) {
|
||||||
super();
|
super();
|
||||||
this.vehicles = vehicles;
|
this.vehicles = vehicles;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue