1
0
Fork 0
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:
jsprit 2013-12-29 22:39:36 +01:00
parent 273a67d1ac
commit c06066503a

View file

@ -3,7 +3,7 @@ package jsprit.core.problem.vehicle;
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;
/**
* Constucts the factory.
*/
public FiniteFleetManagerFactory(Collection<Vehicle> vehicles) {
super();
this.vehicles = vehicles;